Skip to content
This repository was archived by the owner on Jan 9, 2025. It is now read-only.

Commit 9afa0fa

Browse files
committed
Migrated from gradleEnterprise 1.20.1 to Develocity extension 1.21.4 and updated CCUD to 2.0
1 parent 1d597e2 commit 9afa0fa

File tree

5 files changed

+16
-18
lines changed

5 files changed

+16
-18
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
interval: "daily"
77
time: "02:00"
88
allow:
9-
- dependency-name: "com.gradle:gradle-enterprise-maven-extension"
9+
- dependency-name: "com.gradle:develocity-maven-extension"
1010
dependency-type: "production"
1111
- dependency-name: "com.gradle:common-custom-user-data-maven-extension"
1212
dependency-type: "production"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependency-reduced-pom.xml
1919
release.properties
2020
buildNumber.properties
2121
.flattened-pom.xml
22-
.mvn/.gradle-enterprise
22+
.mvn/.develocity
2323

2424
# Gradle
2525
.gradle/
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
22

3-
<gradleEnterprise
4-
xmlns="https://www.gradle.com/gradle-enterprise-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="https://www.gradle.com/gradle-enterprise-maven https://www.gradle.com/schema/gradle-enterprise-maven.xsd">
3+
<develocity
4+
xmlns="https://www.gradle.com/develocity-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="https://www.gradle.com/develocity-maven https://www.gradle.com/schema/develocity-maven.xsd">
66
<server>
77
<url>https://ge.microstream.one</url>
88
<allowUntrusted>false</allowUntrusted>
99
</server>
1010
<buildScan>
11-
<capture>
12-
<goalInputFiles>true</goalInputFiles>
13-
</capture>
1411
<backgroundBuildScanUpload>#{isFalse(env['CI'])}</backgroundBuildScanUpload>
15-
<publish>ALWAYS</publish>
16-
<publishIfAuthenticated>true</publishIfAuthenticated>
12+
<publishing>
13+
<onlyIf><![CDATA[authenticated]]></onlyIf>
14+
</publishing>
1715
<obfuscation>
1816
<ipAddresses>#{{'0.0.0.0'}}</ipAddresses>
1917
</obfuscation>
@@ -27,4 +25,4 @@
2725
<storeEnabled>#{isTrue(env['CI'])}</storeEnabled>
2826
</remote>
2927
</buildCache>
30-
</gradleEnterprise>
28+
</develocity>

.mvn/extensions.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<extensions>
33
<extension>
44
<groupId>com.gradle</groupId>
5-
<artifactId>gradle-enterprise-maven-extension</artifactId>
6-
<version>1.20.1</version>
5+
<artifactId>develocity-maven-extension</artifactId>
6+
<version>1.21.4</version>
77
</extension>
88
<extension>
99
<groupId>com.gradle</groupId>
1010
<artifactId>common-custom-user-data-maven-extension</artifactId>
11-
<version>1.13</version>
11+
<version>2.0</version>
1212
</extension>
1313
</extensions>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,10 +371,10 @@
371371
</plugin>
372372
<plugin>
373373
<groupId>com.gradle</groupId>
374-
<artifactId>gradle-enterprise-maven-extension</artifactId>
375-
<version>1.20.1</version>
374+
<artifactId>develocity-maven-extension</artifactId>
375+
<version>1.21.4</version>
376376
<configuration>
377-
<gradleEnterprise>
377+
<develocity>
378378
<normalization>
379379
<runtimeClassPath>
380380
<metaInf>
@@ -399,7 +399,7 @@
399399
</propertiesNormalizations>
400400
</runtimeClassPath>
401401
</normalization>
402-
</gradleEnterprise>
402+
</develocity>
403403
</configuration>
404404
</plugin>
405405
</plugins>

0 commit comments

Comments
 (0)