Skip to content

Commit 90d41e0

Browse files
committed
Quarkus: 3.17.8
1 parent 80094bb commit 90d41e0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

quarkus-app/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
plugins {
22
id 'java'
3-
id 'io.quarkus' version '3.6.0'
3+
id 'io.quarkus' version '3.17.8'
44
}
55

6-
// Values: ['jar', 'uber-jar', 'native', 'native-sources']
7-
ext.set("quarkus.package.type", "uber-jar")
6+
ext.set("quarkus.package.jar.type", "uber-jar") // ['fast-jar', 'uber-jar', 'mutable-jar']
87

98
group = 'bitxon.quarkus'
109
version = '1.0-SNAPSHOT'
1110

1211
java {
13-
sourceCompatibility = JavaVersion.VERSION_17
14-
targetCompatibility = JavaVersion.VERSION_17
12+
toolchain {
13+
languageVersion = JavaLanguageVersion.of(17)
14+
}
1515
}
1616

1717
repositories {
@@ -23,9 +23,9 @@ dependencies {
2323
annotationProcessor 'org.projectlombok:lombok:1.18.24'
2424
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.3.Final'
2525
implementation project(":common-api")
26-
implementation enforcedPlatform("io.quarkus.platform:quarkus-bom:3.6.0")
26+
implementation enforcedPlatform("io.quarkus.platform:quarkus-bom:3.17.8")
2727
implementation 'io.quarkus:quarkus-arc'
28-
implementation 'io.quarkus:quarkus-resteasy-jackson'
28+
implementation 'io.quarkus:quarkus-rest-jackson'
2929
implementation 'io.quarkus:quarkus-rest-client-jackson'
3030
implementation 'io.quarkus:quarkus-smallrye-health'
3131
implementation 'io.quarkus:quarkus-hibernate-validator'

0 commit comments

Comments
 (0)