@@ -37,81 +37,21 @@ dependencyResolutionManagement {
37
37
url " https://jakarta.oss.sonatype.org/content/repositories/snapshots/"
38
38
}
39
39
}
40
+ }
40
41
41
- versionCatalogs {
42
- jdks {
43
- version " baseline" , " 17"
44
- }
45
- libs {
46
- def byteBuddyVersion = version " byteBuddy" , " 1.14.7"
47
- library( " byteBuddy" , " net.bytebuddy" , " byte-buddy" ). versionRef( byteBuddyVersion )
48
- library( " byteBuddyAgent" , " net.bytebuddy" , " byte-buddy-agent" ). versionRef( byteBuddyVersion )
49
-
50
- def classmateVersion = version " classmate" , " 1.5.1"
51
- library( " classmate" , " com.fasterxml" , " classmate" ). versionRef( classmateVersion )
52
-
53
- def jacksonVersion = version " jackson" , " 2.14.1"
54
- library( " jackson" , " com.fasterxml.jackson.core" , " jackson-databind" ). versionRef( jacksonVersion )
55
- library( " jacksonXml" , " com.fasterxml.jackson.dataformat" , " jackson-dataformat-xml" ). versionRef( jacksonVersion )
56
- library( " jacksonJsr310" , " com.fasterxml.jackson.datatype" , " jackson-datatype-jsr310" ). versionRef( jacksonVersion )
57
-
58
- def jandexVersion = version " jandex" , " 3.3.0"
59
- library( " jandex" , " io.smallrye" , " jandex" ). versionRef( jandexVersion )
60
-
61
- def jbossLoggingVersion = version " jbossLogging" , " 3.5.0.Final"
62
- library( " logging" , " org.jboss.logging" , " jboss-logging" ). versionRef( jbossLoggingVersion )
63
-
64
- def jbossLoggingToolVersion = version " jbossLoggingTool" , " 2.2.1.Final"
65
- library( " loggingAnnotations" , " org.jboss.logging" , " jboss-logging-annotations" ). versionRef( jbossLoggingToolVersion )
66
- library( " loggingProcessor" , " org.jboss.logging" , " jboss-logging-processor" ). versionRef( jbossLoggingToolVersion )
67
- }
68
- jakartaLibs {
69
- def jpaVersion = version " jpa" , " 3.2.0-B02"
70
- library( " jpa" , " jakarta.persistence" , " jakarta.persistence-api" ). versionRef( jpaVersion )
71
-
72
- def injectVersion = version " inject" , " 2.0.1"
73
- def jaxbApiVersion = version " jaxbApi" , " 4.0.0"
74
- def jaxbRuntimeVersion = version " jaxbRuntime" , " 4.0.2"
75
- library( " inject" , " jakarta.inject" , " jakarta.inject-api" ). versionRef( injectVersion )
76
- library( " jaxbApi" , " jakarta.xml.bind" , " jakarta.xml.bind-api" ). versionRef( jaxbApiVersion )
77
- library( " jaxb" , " org.glassfish.jaxb" , " jaxb-runtime" ). versionRef( jaxbRuntimeVersion )
78
- library( " xjc" , " org.glassfish.jaxb" , " jaxb-xjc" ). versionRef( jaxbRuntimeVersion )
42
+ develocity {
43
+ server = ' https://develocity.commonhaus.dev'
79
44
80
- def jsonbApiVersion = version " jsonbApi" , " 3.0.0"
81
- def jsonbRuntimeVersion = version " jsonbRuntime" , " 3.0.2"
82
- library( " jsonbApi" , " jakarta.json.bind" , " jakarta.json.bind-api" ). versionRef( jsonbApiVersion )
83
- library( " jsonb" , " org.eclipse" , " yasson" ). versionRef( jsonbRuntimeVersion )
45
+ buildScan {
46
+ capture {
47
+ fileFingerprints = true
84
48
}
85
- testLibs {
86
- def assertjVersion = version " assertj" , " 3.22.0"
87
- library( " assertjCore" , " org.assertj" , " assertj-core" ). versionRef( assertjVersion )
49
+ publishing. onlyIf { it. authenticated }
88
50
89
- def h2Version = version " h2" , " 2.2.224"
90
- library( " h2" , " com.h2database" , " h2" ). versionRef( h2Version )
91
-
92
- def junit5Version = version " junit5" , " 5.11.0"
93
- library( " junit5Api" , " org.junit.jupiter" , " junit-jupiter-api" ). versionRef( junit5Version )
94
- library( " junit5Engine" , " org.junit.jupiter" , " junit-jupiter-engine" ). versionRef( junit5Version )
95
- library( " junit5Params" , " org.junit.jupiter" , " junit-jupiter-params" ). versionRef( junit5Version )
96
-
97
- def log4jVersion = version " log4j" , " 2.17.1"
98
- library( " log4j" , " org.apache.logging.log4j" , " log4j-core" ). versionRef( log4jVersion )
51
+ obfuscation {
52
+ // Don't share ip addresses
53
+ ipAddresses { addresses -> addresses. collect { address -> " 0.0.0.0" } }
99
54
}
100
- }
101
-
102
- develocity {
103
- server = ' https://develocity.commonhaus.dev'
104
-
105
- buildScan {
106
- capture {
107
- fileFingerprints = true
108
- }
109
- publishing. onlyIf { it. authenticated }
110
-
111
- obfuscation {
112
- // Don't share ip addresses
113
- ipAddresses { addresses -> addresses. collect { address -> " 0.0.0.0" } }
114
- }
115
55
116
56
// uploadInBackground = !settings.ext.isCiEnvironment
117
57
//
@@ -122,7 +62,6 @@ dependencyResolutionManagement {
122
62
// if ( settings.extensions.findByName( 'ci.node' ) ) {
123
63
// tag settings.extensions.findByName( 'ci.node' )
124
64
// }
125
- }
126
65
}
127
66
}
128
67
0 commit comments