Skip to content

Commit e221fba

Browse files
tisonkunclayburn
andauthored
CURATOR-711. Upgrade Gradle Enterpirse Extensions for JDK 22 build (#504)
Signed-off-by: tison <[email protected]> Co-authored-by: Clay Johnson <[email protected]>
1 parent b195062 commit e221fba

File tree

5 files changed

+13
-17
lines changed

5 files changed

+13
-17
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
matrix:
5959
java: [8, 11, 17, 21]
6060
env:
61-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
61+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
6262
steps:
6363
- uses: actions/checkout@v3
6464

@@ -91,7 +91,7 @@ jobs:
9191
matrix:
9292
zookeeper: [curator-test-zk38, curator-test-zk37, curator-test-zk36, curator-test-zk35]
9393
env:
94-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
94+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
9595
steps:
9696
- uses: actions/checkout@v3
9797

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,4 @@ atlassian-ide-plugin.xml
6767
# Gradle Enterprise
6868
test-reports/
6969
.mvn/.gradle-enterprise/
70+
.mvn/.develocity/
File renamed without changes.
Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,17 @@
1919
under the License.
2020
2121
-->
22-
<gradleEnterprise
23-
xmlns="https://www.gradle.com/gradle-enterprise-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24-
xsi:schemaLocation="https://www.gradle.com/gradle-enterprise-maven https://www.gradle.com/schema/gradle-enterprise-maven.xsd">
22+
<develocity
23+
xmlns="https://www.gradle.com/develocity-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24+
xsi:schemaLocation="https://www.gradle.com/develocity-maven https://www.gradle.com/schema/develocity-maven.xsd">
2525
<server>
2626
<url>https://ge.apache.org</url>
27-
<allowUntrusted>false</allowUntrusted>
2827
</server>
2928
<buildScan>
30-
<capture>
31-
<goalInputFiles>true</goalInputFiles>
32-
<buildLogging>true</buildLogging>
33-
<testLogging>true</testLogging>
34-
</capture>
3529
<backgroundBuildScanUpload>#{isFalse(env['GITHUB_ACTIONS'])}</backgroundBuildScanUpload>
36-
<publish>ALWAYS</publish>
37-
<publishIfAuthenticated>true</publishIfAuthenticated>
30+
<publishing>
31+
<onlyIf><![CDATA[authenticated]]></onlyIf>
32+
</publishing>
3833
<obfuscation>
3934
<ipAddresses>#{{'0.0.0.0'}}</ipAddresses>
4035
</obfuscation>
@@ -47,4 +42,4 @@
4742
<enabled>false</enabled>
4843
</remote>
4944
</buildCache>
50-
</gradleEnterprise>
45+
</develocity>

.mvn/extensions.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
2424
<extension>
2525
<groupId>com.gradle</groupId>
26-
<artifactId>gradle-enterprise-maven-extension</artifactId>
27-
<version>1.19.1</version>
26+
<artifactId>develocity-maven-extension</artifactId>
27+
<version>1.21.4</version>
2828
</extension>
2929
<extension>
3030
<groupId>com.gradle</groupId>
3131
<artifactId>common-custom-user-data-maven-extension</artifactId>
32-
<version>1.12.4</version>
32+
<version>2.0</version>
3333
</extension>
3434
</extensions>

0 commit comments

Comments
 (0)