File tree Expand file tree Collapse file tree 3 files changed +56
-0
lines changed Expand file tree Collapse file tree 3 files changed +56
-0
lines changed Original file line number Diff line number Diff line change @@ -54,3 +54,6 @@ maven-eclipse.xml
54
54
55
55
# Cache folders for formatting plugins:
56
56
.cache
57
+
58
+ # develocity cache related:
59
+ .mvn /.develocity
Original file line number Diff line number Diff line change
1
+ <develocity
2
+ xmlns =" https://www.gradle.com/develocity-maven" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" https://www.gradle.com/develocity-maven https://www.gradle.com/schema/develocity-maven.xsd" >
4
+ <server >
5
+ <url >https://ge.hibernate.org</url >
6
+ <allowUntrusted >false</allowUntrusted >
7
+ </server >
8
+ <buildScan >
9
+ <!--
10
+ Expression support is documented here: https://docs.gradle.com/enterprise/maven-extension/#expression_support
11
+ -->
12
+ <obfuscation >
13
+ <!-- Don't share ip addresses-->
14
+ <ipAddresses >#{{'0.0.0.0'}}</ipAddresses >
15
+ </obfuscation >
16
+ <capture >
17
+ <fileFingerprints >true</fileFingerprints >
18
+ </capture >
19
+ <!-- https://docs.gradle.com/enterprise/maven-extension/#manual_access_key_configuration -->
20
+ <backgroundBuildScanUpload >#{env['CI'] == null}</backgroundBuildScanUpload >
21
+ <tags >
22
+ <tag >Hibernate Validator</tag >
23
+ </tags >
24
+ </buildScan >
25
+ <buildCache >
26
+ <local >
27
+ <enabled >#{properties['no-build-cache'] == null}</enabled >
28
+ </local >
29
+ <remote >
30
+ <enabled >#{properties['no-build-cache'] == null}</enabled >
31
+ <storeEnabled >
32
+ #{env['CI'] != null and (env['CHANGE_ID']?:'').isBlank() and (env['GITHUB_BASE_REF']?:'').isBlank() and !(env['DEVELOCITY_ACCESS_KEY']?:'').isBlank()}
33
+ </storeEnabled >
34
+ </remote >
35
+ </buildCache >
36
+ </develocity >
Original file line number Diff line number Diff line change
1
+ <extensions >
2
+ <extension >
3
+ <groupId >com.gradle</groupId >
4
+ <artifactId >develocity-maven-extension</artifactId >
5
+ <version >1.22.2</version >
6
+ </extension >
7
+ <extension >
8
+ <groupId >com.gradle</groupId >
9
+ <artifactId >common-custom-user-data-maven-extension</artifactId >
10
+ <version >2.0.1</version >
11
+ </extension >
12
+ <extension >
13
+ <groupId >org.hibernate.infra.develocity</groupId >
14
+ <artifactId >hibernate-develocity-maven-extension</artifactId >
15
+ <version >3.0.0.Final</version >
16
+ </extension >
17
+ </extensions >
You can’t perform that action at this time.
0 commit comments