Skip to content

Commit 2d834fe

Browse files
committed
Polish build.gradle.kts
1 parent 7e59ffc commit 2d834fe

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

build.gradle.kts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
plugins {
2+
java
23
id("com.diffplug.eclipse.apt") version "3.44.0"
34
id("com.diffplug.spotless") version "6.25.0"
45
id("org.domaframework.doma.compile") version "2.0.0"
@@ -28,13 +29,13 @@ subprojects {
2829

2930
dependencies {
3031
val domaVersion: String by project
31-
"annotationProcessor"("org.seasar.doma:doma-processor:${domaVersion}")
32-
"implementation"("org.seasar.doma:doma-core:${domaVersion}")
33-
"implementation"("org.seasar.doma:doma-slf4j:${domaVersion}")
34-
"runtimeOnly"("ch.qos.logback:logback-classic:1.2.11")
35-
"runtimeOnly"("com.h2database:h2:2.2.224")
36-
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.10.2")
37-
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.10.2")
32+
annotationProcessor("org.seasar.doma:doma-processor:${domaVersion}")
33+
implementation("org.seasar.doma:doma-core:${domaVersion}")
34+
implementation("org.seasar.doma:doma-slf4j:${domaVersion}")
35+
runtimeOnly("ch.qos.logback:logback-classic:1.2.11")
36+
runtimeOnly("com.h2database:h2:2.2.224")
37+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
38+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
3839
}
3940

4041
eclipse {

0 commit comments

Comments
 (0)