|
20 | 20 | * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
21 | 21 | -->
|
22 | 22 |
|
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"> |
26 | 26 | <server>
|
27 | 27 | <url>https://ge.xwiki.org</url>
|
28 | 28 | </server>
|
|
31 | 31 | <!-- Always publish build scans on CI but on demand for devs so that we don't get false positives on ge.xwiki.org
|
32 | 32 | due to local changes from users and so that it doesn't pollute the ge.xwiki.org data.
|
33 | 33 | 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> |
35 | 35 | <captureGoalInputFiles>true</captureGoalInputFiles>
|
36 | 36 | <!-- Use background scans only locally to avoid potential issues on CI (the ephemeral docker agent could terminate
|
37 | 37 | 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> |
39 | 39 | </buildScan>
|
40 | 40 | <buildCache>
|
41 | 41 | <!-- Notes:
|
|
44 | 44 | more to save the goal outputs since they're not going to be re-used.
|
45 | 45 | -->
|
46 | 46 | <local>
|
47 |
| - <enabled>#{env['CI'] == null}</enabled> |
| 47 | + <enabled><![CDATA[env['CI'] == null]]</enabled> |
48 | 48 | </local>
|
49 | 49 | <remote>
|
50 | 50 | <!-- Notes:
|
51 | 51 | * To disable the remote build cache on the command line, pass: -Dgradle.cache.remote.enabled=false
|
52 | 52 | -->
|
53 | 53 | <enabled>true</enabled>
|
54 | 54 | <!-- 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> |
56 | 56 | <server>
|
57 | 57 | <!-- Note: Remote cache authentication is handled in the Maven settings.xml file. The id below is the one
|
58 | 58 | found in settings.xml -->
|
|
63 | 63 | </server>
|
64 | 64 | </remote>
|
65 | 65 | </buildCache>
|
66 |
| -</gradleEnterprise> |
| 66 | +</develocity> |
0 commit comments