Skip to content

Commit

Permalink
Polish build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed May 18, 2024
1 parent 7e59ffc commit 2d834fe
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
plugins {
java
id("com.diffplug.eclipse.apt") version "3.44.0"
id("com.diffplug.spotless") version "6.25.0"
id("org.domaframework.doma.compile") version "2.0.0"
Expand Down Expand Up @@ -28,13 +29,13 @@ subprojects {

dependencies {
val domaVersion: String by project
"annotationProcessor"("org.seasar.doma:doma-processor:${domaVersion}")
"implementation"("org.seasar.doma:doma-core:${domaVersion}")
"implementation"("org.seasar.doma:doma-slf4j:${domaVersion}")
"runtimeOnly"("ch.qos.logback:logback-classic:1.2.11")
"runtimeOnly"("com.h2database:h2:2.2.224")
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.10.2")
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.10.2")
annotationProcessor("org.seasar.doma:doma-processor:${domaVersion}")
implementation("org.seasar.doma:doma-core:${domaVersion}")
implementation("org.seasar.doma:doma-slf4j:${domaVersion}")
runtimeOnly("ch.qos.logback:logback-classic:1.2.11")
runtimeOnly("com.h2database:h2:2.2.224")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
}

eclipse {
Expand Down

0 comments on commit 2d834fe

Please sign in to comment.