Skip to content

Commit e254573

Browse files
Bump to 2.0.0 (#492)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: slinkydeveloper <slinkydeveloper@users.noreply.github.com>
1 parent 0c15c7e commit e254573

File tree

1 file changed

+212
-67
lines changed

1 file changed

+212
-67
lines changed

gradle/libs.versions.toml

Lines changed: 212 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,215 @@
1-
[versions]
2-
jackson = "2.18.1"
3-
victools-json-schema = "4.37.0"
4-
ksp = "2.0.21-1.0.28"
5-
protobuf = "4.29.3"
6-
opentelemetry = "1.47.0"
7-
vertx = "4.5.11"
8-
kotlinx-serialization = "1.7.3"
9-
kotlinx-coroutines = "1.9.0"
10-
junit = "5.10.2"
11-
spring-boot = "3.4.4"
12-
log4j = "2.24.2"
13-
restate = "2.0.0-SNAPSHOT"
14-
151
[libraries]
16-
aws-lambda-core = "com.amazonaws:aws-lambda-java-core:1.2.3"
17-
aws-lambda-events = "com.amazonaws:aws-lambda-java-events:3.11.5"
18-
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson" }
19-
jackson-core = { module = "com.fasterxml.jackson.core:jackson-core", version.ref = "jackson" }
20-
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
21-
jackson-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "jackson" }
22-
jackson-parameter-names = { module = "com.fasterxml.jackson.module:jackson-module-parameter-names", version.ref = "jackson" }
23-
handlebars = "com.github.jknack:handlebars:4.3.1"
24-
victools-jsonschema-generator = { module = "com.github.victools:jsonschema-generator", version.ref = "victools-json-schema" }
25-
victools-jsonschema-module-jackson = { module = "com.github.victools:jsonschema-module-jackson", version.ref = "victools-json-schema" }
26-
google-findbugs-jsr305 = "com.google.code.findbugs:jsr305:3.0.2"
27-
tink = "com.google.crypto.tink:tink:1.15.0"
28-
ksp-api = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "ksp" }
29-
protobuf-java = { module = "com.google.protobuf:protobuf-java", version.ref = "protobuf" }
30-
protobuf-kotlin = { module = "com.google.protobuf:protobuf-kotlin", version.ref = "protobuf" }
31-
jwt = "com.nimbusds:nimbus-jose-jwt:9.47"
32-
opentelemetry-api = { module = "io.opentelemetry:opentelemetry-api", version.ref = "opentelemetry" }
33-
opentelemetry-kotlin = { module = "io.opentelemetry:opentelemetry-extension-kotlin", version.ref = "opentelemetry" }
34-
reactiverse-contextual-logging = "io.reactiverse:reactiverse-contextual-logging:1.2.1"
35-
mutiny = "io.smallrye.reactive:mutiny:2.7.0"
36-
vertx-core = { module = "io.vertx:vertx-core", version.ref = "vertx" }
37-
vertx-junit5 = { module = "io.vertx:vertx-junit5", version.ref = "vertx" }
38-
vertx-kotlin-coroutines = { module = "io.vertx:vertx-lang-kotlin-coroutines", version.ref = "vertx" }
39-
log4j-api = { module = "org.apache.logging.log4j:log4j-api", version.ref = "log4j" }
40-
log4j-core = { module = "org.apache.logging.log4j:log4j-core", version.ref = "log4j" }
41-
tomcat-annotations = "org.apache.tomcat:annotations-api:6.0.53"
42-
assertj = "org.assertj:assertj-core:3.26.0"
43-
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
44-
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinx-coroutines" }
45-
kotlinx-serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "kotlinx-serialization" }
46-
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization" }
47-
jspecify = "org.jspecify:jspecify:1.0.0"
48-
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }
49-
junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
50-
slf4j-nop = "org.slf4j:slf4j-nop:2.0.16"
51-
spring-boot = { module = "org.springframework.boot:spring-boot", version.ref = "spring-boot" }
52-
spring-boot-starter = { module = "org.springframework.boot:spring-boot-starter", version.ref = "spring-boot" }
53-
spring-boot-starter-logging = { module = "org.springframework.boot:spring-boot-starter-logging", version.ref = "spring-boot" }
54-
spring-boot-starter-json = { module = "org.springframework.boot:spring-boot-starter-json", version.ref = "spring-boot" }
55-
spring-boot-starter-test = { module = "org.springframework.boot:spring-boot-starter-test", version.ref = "spring-boot" }
56-
testcontainers = "org.testcontainers:testcontainers:1.20.4"
2+
assertj = 'org.assertj:assertj-core:3.26.0'
3+
aws-lambda-core = 'com.amazonaws:aws-lambda-java-core:1.2.3'
4+
aws-lambda-events = 'com.amazonaws:aws-lambda-java-events:3.11.5'
5+
google-findbugs-jsr305 = 'com.google.code.findbugs:jsr305:3.0.2'
6+
handlebars = 'com.github.jknack:handlebars:4.3.1'
7+
jspecify = 'org.jspecify:jspecify:1.0.0'
8+
jwt = 'com.nimbusds:nimbus-jose-jwt:9.47'
9+
mutiny = 'io.smallrye.reactive:mutiny:2.7.0'
10+
reactiverse-contextual-logging = 'io.reactiverse:reactiverse-contextual-logging:1.2.1'
11+
slf4j-nop = 'org.slf4j:slf4j-nop:2.0.16'
12+
testcontainers = 'org.testcontainers:testcontainers:1.20.4'
13+
tink = 'com.google.crypto.tink:tink:1.15.0'
14+
tomcat-annotations = 'org.apache.tomcat:annotations-api:6.0.53'
15+
16+
[libraries.jackson-annotations]
17+
module = 'com.fasterxml.jackson.core:jackson-annotations'
18+
19+
[libraries.jackson-annotations.version]
20+
ref = 'jackson'
21+
22+
[libraries.jackson-core]
23+
module = 'com.fasterxml.jackson.core:jackson-core'
24+
25+
[libraries.jackson-core.version]
26+
ref = 'jackson'
27+
28+
[libraries.jackson-databind]
29+
module = 'com.fasterxml.jackson.core:jackson-databind'
30+
31+
[libraries.jackson-databind.version]
32+
ref = 'jackson'
33+
34+
[libraries.jackson-jsr310]
35+
module = 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
36+
37+
[libraries.jackson-jsr310.version]
38+
ref = 'jackson'
39+
40+
[libraries.jackson-parameter-names]
41+
module = 'com.fasterxml.jackson.module:jackson-module-parameter-names'
42+
43+
[libraries.jackson-parameter-names.version]
44+
ref = 'jackson'
45+
46+
[libraries.junit-api]
47+
module = 'org.junit.jupiter:junit-jupiter-api'
48+
49+
[libraries.junit-api.version]
50+
ref = 'junit'
51+
52+
[libraries.junit-jupiter]
53+
module = 'org.junit.jupiter:junit-jupiter'
54+
55+
[libraries.junit-jupiter.version]
56+
ref = 'junit'
57+
58+
[libraries.kotlinx-coroutines-core]
59+
module = 'org.jetbrains.kotlinx:kotlinx-coroutines-core'
60+
61+
[libraries.kotlinx-coroutines-core.version]
62+
ref = 'kotlinx-coroutines'
63+
64+
[libraries.kotlinx-coroutines-test]
65+
module = 'org.jetbrains.kotlinx:kotlinx-coroutines-test'
66+
67+
[libraries.kotlinx-coroutines-test.version]
68+
ref = 'kotlinx-coroutines'
69+
70+
[libraries.kotlinx-serialization-core]
71+
module = 'org.jetbrains.kotlinx:kotlinx-serialization-core'
72+
73+
[libraries.kotlinx-serialization-core.version]
74+
ref = 'kotlinx-serialization'
75+
76+
[libraries.kotlinx-serialization-json]
77+
module = 'org.jetbrains.kotlinx:kotlinx-serialization-json'
78+
79+
[libraries.kotlinx-serialization-json.version]
80+
ref = 'kotlinx-serialization'
81+
82+
[libraries.ksp-api]
83+
module = 'com.google.devtools.ksp:symbol-processing-api'
84+
85+
[libraries.ksp-api.version]
86+
ref = 'ksp'
87+
88+
[libraries.log4j-api]
89+
module = 'org.apache.logging.log4j:log4j-api'
90+
91+
[libraries.log4j-api.version]
92+
ref = 'log4j'
93+
94+
[libraries.log4j-core]
95+
module = 'org.apache.logging.log4j:log4j-core'
96+
97+
[libraries.log4j-core.version]
98+
ref = 'log4j'
99+
100+
[libraries.opentelemetry-api]
101+
module = 'io.opentelemetry:opentelemetry-api'
102+
103+
[libraries.opentelemetry-api.version]
104+
ref = 'opentelemetry'
105+
106+
[libraries.opentelemetry-kotlin]
107+
module = 'io.opentelemetry:opentelemetry-extension-kotlin'
108+
109+
[libraries.opentelemetry-kotlin.version]
110+
ref = 'opentelemetry'
111+
112+
[libraries.protobuf-java]
113+
module = 'com.google.protobuf:protobuf-java'
114+
115+
[libraries.protobuf-java.version]
116+
ref = 'protobuf'
117+
118+
[libraries.protobuf-kotlin]
119+
module = 'com.google.protobuf:protobuf-kotlin'
120+
121+
[libraries.protobuf-kotlin.version]
122+
ref = 'protobuf'
123+
124+
[libraries.spring-boot]
125+
module = 'org.springframework.boot:spring-boot'
126+
127+
[libraries.spring-boot.version]
128+
ref = 'spring-boot'
129+
130+
[libraries.spring-boot-starter]
131+
module = 'org.springframework.boot:spring-boot-starter'
132+
133+
[libraries.spring-boot-starter.version]
134+
ref = 'spring-boot'
135+
136+
[libraries.spring-boot-starter-json]
137+
module = 'org.springframework.boot:spring-boot-starter-json'
138+
139+
[libraries.spring-boot-starter-json.version]
140+
ref = 'spring-boot'
141+
142+
[libraries.spring-boot-starter-logging]
143+
module = 'org.springframework.boot:spring-boot-starter-logging'
144+
145+
[libraries.spring-boot-starter-logging.version]
146+
ref = 'spring-boot'
147+
148+
[libraries.spring-boot-starter-test]
149+
module = 'org.springframework.boot:spring-boot-starter-test'
150+
151+
[libraries.spring-boot-starter-test.version]
152+
ref = 'spring-boot'
153+
154+
[libraries.vertx-core]
155+
module = 'io.vertx:vertx-core'
156+
157+
[libraries.vertx-core.version]
158+
ref = 'vertx'
159+
160+
[libraries.vertx-junit5]
161+
module = 'io.vertx:vertx-junit5'
162+
163+
[libraries.vertx-junit5.version]
164+
ref = 'vertx'
165+
166+
[libraries.vertx-kotlin-coroutines]
167+
module = 'io.vertx:vertx-lang-kotlin-coroutines'
168+
169+
[libraries.vertx-kotlin-coroutines.version]
170+
ref = 'vertx'
171+
172+
[libraries.victools-jsonschema-generator]
173+
module = 'com.github.victools:jsonschema-generator'
174+
175+
[libraries.victools-jsonschema-generator.version]
176+
ref = 'victools-json-schema'
177+
178+
[libraries.victools-jsonschema-module-jackson]
179+
module = 'com.github.victools:jsonschema-module-jackson'
180+
181+
[libraries.victools-jsonschema-module-jackson.version]
182+
ref = 'victools-json-schema'
57183

58184
[plugins]
59-
dependency-license-report = "com.github.jk1.dependency-license-report:2.0"
60-
shadow = "com.gradleup.shadow:9.0.0-beta8"
61-
jib = "com.google.cloud.tools.jib:3.4.4"
62-
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
63-
protobuf = "com.google.protobuf:0.9.4"
64-
aggregate-javadoc = "io.freefair.aggregate-javadoc:8.6"
65-
nexus-publish = "io.github.gradle-nexus.publish-plugin:1.3.0"
66-
spring-dependency-management = "io.spring.dependency-management:1.1.6"
67-
dokka = "org.jetbrains.dokka:1.9.20"
68-
jsonschema2pojo = "org.jsonschema2pojo:1.2.1"
69-
openapi-generator = "org.openapi.generator:7.5.0"
70-
spotless = "com.diffplug.spotless:6.25.0"
185+
aggregate-javadoc = 'io.freefair.aggregate-javadoc:8.6'
186+
dependency-license-report = 'com.github.jk1.dependency-license-report:2.0'
187+
dokka = 'org.jetbrains.dokka:1.9.20'
188+
jib = 'com.google.cloud.tools.jib:3.4.4'
189+
jsonschema2pojo = 'org.jsonschema2pojo:1.2.1'
190+
nexus-publish = 'io.github.gradle-nexus.publish-plugin:1.3.0'
191+
openapi-generator = 'org.openapi.generator:7.5.0'
192+
protobuf = 'com.google.protobuf:0.9.4'
193+
shadow = 'com.gradleup.shadow:9.0.0-beta8'
194+
spotless = 'com.diffplug.spotless:6.25.0'
195+
spring-dependency-management = 'io.spring.dependency-management:1.1.6'
196+
197+
[plugins.ksp]
198+
id = 'com.google.devtools.ksp'
199+
200+
[plugins.ksp.version]
201+
ref = 'ksp'
202+
203+
[versions]
204+
jackson = '2.18.1'
205+
junit = '5.10.2'
206+
kotlinx-coroutines = '1.9.0'
207+
kotlinx-serialization = '1.7.3'
208+
ksp = '2.0.21-1.0.28'
209+
log4j = '2.24.2'
210+
opentelemetry = '1.47.0'
211+
protobuf = '4.29.3'
212+
restate = '2.0.0'
213+
spring-boot = '3.4.4'
214+
vertx = '4.5.11'
215+
victools-json-schema = '4.37.0'

0 commit comments

Comments
 (0)