File tree 5 files changed +57
-50
lines changed 5 files changed +57
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ java
3
+ id(" io.quarkus" )
4
+ id(" org.seasar.doma.compile" ) version " 1.1.0"
5
+ }
6
+
7
+ repositories {
8
+ mavenLocal()
9
+ mavenCentral()
10
+ }
11
+
12
+ dependencies {
13
+ val domaVersion: String by project
14
+ val quarkusVersion: String by project
15
+ val domaQuarkusVersion: String by project
16
+ annotationProcessor(" org.seasar.doma:doma-processor:$domaVersion " )
17
+ implementation(enforcedPlatform(" io.quarkus:quarkus-bom:${quarkusVersion} " ))
18
+ implementation(" io.quarkus:quarkus-jdbc-postgresql:${quarkusVersion} " )
19
+ implementation(" io.quarkus:quarkus-resteasy:${quarkusVersion} " )
20
+ implementation(" io.quarkus:quarkus-resteasy-jsonb:${quarkusVersion} " )
21
+ implementation(" org.seasar.doma:doma-core:$domaVersion " )
22
+ implementation(" org.seasar.doma:doma-quarkus-deployment:$domaQuarkusVersion " )
23
+ testImplementation(" io.quarkus:quarkus-junit5:${quarkusVersion} " )
24
+ testImplementation(" io.rest-assured:rest-assured:4.3.1" )
25
+ }
26
+
27
+ tasks {
28
+ val encoding = " UTF-8"
29
+
30
+ compileJava {
31
+ options.encoding = encoding
32
+ options.compilerArgs.add(" -parameters" )
33
+ }
34
+
35
+ compileTestJava {
36
+ options.encoding = encoding
37
+ }
38
+ }
39
+
40
+ java {
41
+ sourceCompatibility = JavaVersion .VERSION_11
42
+ targetCompatibility = JavaVersion .VERSION_11
43
+ }
Original file line number Diff line number Diff line change
1
+ group =" org.seasar.doma"
2
+ version =" 1.0"
1
3
domaVersion =2.44.0
2
4
domaQuarkusVersion =1.1.0
3
5
quarkusVersion =1.9.0.Final
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ pluginManagement {
2
+ repositories {
3
+ mavenLocal()
4
+ mavenCentral()
5
+ gradlePluginPortal()
6
+ }
7
+ plugins {
8
+ val quarkusVersion: String by settings
9
+ id(" io.quarkus" ) version " ${quarkusVersion} "
10
+ }
11
+ }
12
+ rootProject.name = " quarkus-sample"
You can’t perform that action at this time.
0 commit comments