File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ wrapper {
32
32
33
33
dependencies {
34
34
constraints {
35
- api(' com.augustcellars. cose:cose-java:[1.0.0,2) ' )
36
- api(' com.google. guava:guava:[24.1.1,32) ' )
37
- api(' com.upokecenter: cbor:[4.5.1,5) ' )
38
- api(' org.apache.httpcomponents.client5: httpclient5:[5.0.0,6) ' )
39
- api(' org .slf4j:slf4j-api:[1.7.25,3) ' )
35
+ api(constraintLibs . cose)
36
+ api(constraintLibs . guava)
37
+ api(constraintLibs . cbor)
38
+ api(constraintLibs . httpclient5)
39
+ api(constraintLibs . slf4j)
40
40
}
41
41
}
42
42
Original file line number Diff line number Diff line change @@ -15,7 +15,13 @@ dependencyResolutionManagement {
15
15
versionCatalogs {
16
16
create(" constraintLibs" ) {
17
17
val jacksonVer = version(" jackson" , " [2.13.2.1,3)" )
18
+
19
+ library(" cbor" , " com.upokecenter:cbor:[4.5.1,5)" )
20
+ library(" cose" , " com.augustcellars.cose:cose-java:[1.0.0,2)" )
21
+ library(" guava" , " com.google.guava:guava:[24.1.1,32)" )
22
+ library(" httpclient5" , " org.apache.httpcomponents.client5:httpclient5:[5.0.0,6)" )
18
23
library(" jackson-bom" , " com.fasterxml.jackson" , " jackson-bom" ).versionRef(jacksonVer)
24
+ library(" slf4j" , " org.slf4j:slf4j-api:[1.7.25,3)" )
19
25
}
20
26
}
21
27
}
You can’t perform that action at this time.
0 commit comments