Skip to content

Commit 91030e5

Browse files
committed
[Misc] Move to develocity-maven-extension
1 parent 0f7a13d commit 91030e5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.mvn/gradle-enterprise.xml renamed to .mvn/develocity.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
2121
-->
2222

23-
<gradleEnterprise
24-
xmlns="https://www.gradle.com/gradle-enterprise-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25-
xsi:schemaLocation="https://www.gradle.com/gradle-enterprise-maven https://www.gradle.com/schema/gradle-enterprise-maven.xsd">
23+
<develocity
24+
xmlns="https://www.gradle.com/develocity-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25+
xsi:schemaLocation="https://www.gradle.com/develocity-maven https://www.gradle.com/schema/develocity-maven.xsd">
2626
<server>
2727
<url>https://ge.xwiki.org</url>
2828
</server>
@@ -31,11 +31,11 @@
3131
<!-- Always publish build scans on CI but on demand for devs so that we don't get false positives on ge.xwiki.org
3232
due to local changes from users and so that it doesn't pollute the ge.xwiki.org data.
3333
To force publishing a build scan: -Dscan -->
34-
<publish>#{env['CI'] == null ? 'ON_DEMAND' : 'ALWAYS'}</publish>
34+
<publish><![CDATA[env['CI'] == null ? 'ON_DEMAND' : 'ALWAYS']]</publish>
3535
<captureGoalInputFiles>true</captureGoalInputFiles>
3636
<!-- Use background scans only locally to avoid potential issues on CI (the ephemeral docker agent could terminate
3737
as soon as the build is finished and thus the upload may be terminated before it completes) -->
38-
<backgroundBuildScanUpload>#{env['CI'] == null}</backgroundBuildScanUpload>
38+
<backgroundBuildScanUpload><![CDATA[env['CI'] == null]]</backgroundBuildScanUpload>
3939
</buildScan>
4040
<buildCache>
4141
<!-- Notes:
@@ -44,15 +44,15 @@
4444
more to save the goal outputs since they're not going to be re-used.
4545
-->
4646
<local>
47-
<enabled>#{env['CI'] == null}</enabled>
47+
<enabled><![CDATA[env['CI'] == null]]</enabled>
4848
</local>
4949
<remote>
5050
<!-- Notes:
5151
* To disable the remote build cache on the command line, pass: -Dgradle.cache.remote.enabled=false
5252
-->
5353
<enabled>true</enabled>
5454
<!-- Only CI jobs are allowed to store build outputs in the remote cache -->
55-
<storeEnabled>#{isTrue(env['CI']) and isTrue(env['GRADLE_ENTERPRISE_ACCESS_KEY'])}</storeEnabled>
55+
<storeEnabled><![CDATA[isTrue(env['CI']) and isTrue(env['GRADLE_ENTERPRISE_ACCESS_KEY'])]]</storeEnabled>
5656
<server>
5757
<!-- Note: Remote cache authentication is handled in the Maven settings.xml file. The id below is the one
5858
found in settings.xml -->
@@ -63,4 +63,4 @@
6363
</server>
6464
</remote>
6565
</buildCache>
66-
</gradleEnterprise>
66+
</develocity>

0 commit comments

Comments
 (0)