File tree Expand file tree Collapse file tree 12 files changed +161
-140
lines changed Expand file tree Collapse file tree 12 files changed +161
-140
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ buildscript {
2+ repositories {
3+ mavenCentral()
4+ mavenLocal()
5+ maven {
6+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
7+ }
8+ }
9+ dependencies {
10+ classpath(" org.domaframework.doma:compile" )
11+ }
12+ }
13+
14+ plugins {
15+ id(" java" )
16+ id(" org.domaframework.doma.compile" )
17+ }
18+
19+ val domaVersion = " 3.0.1"
20+
21+ java {
22+ toolchain.languageVersion.set(JavaLanguageVersion .of(17 ))
23+ }
24+
25+ tasks {
26+ test {
27+ useJUnitPlatform()
28+ }
29+ }
30+
31+ repositories {
32+ mavenCentral()
33+ mavenLocal()
34+ maven {
35+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
36+ }
37+ }
38+
39+ dependencies {
40+ annotationProcessor(" org.seasar.doma:doma-processor:$domaVersion " )
41+ implementation(" org.seasar.doma:doma-core:$domaVersion " )
42+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.11.2" )
43+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.11.2" )
44+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ rootProject.name = " compile-java-test"
2+
3+ pluginManagement {
4+ includeBuild(" ../compile" )
5+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ buildscript {
2+ repositories {
3+ mavenCentral()
4+ mavenLocal()
5+ maven {
6+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
7+ }
8+ }
9+ dependencies {
10+ classpath(" org.domaframework.doma:compile" )
11+ }
12+ }
13+
14+ plugins {
15+ id(" java" )
16+ id(" org.domaframework.doma.compile" )
17+ id(" org.jetbrains.kotlin.jvm" ) version " 2.0.20"
18+ id(" org.jetbrains.kotlin.kapt" ) version " 2.0.20"
19+ }
20+
21+ val domaVersion = " 3.0.1"
22+
23+ kapt {
24+ includeCompileClasspath = false
25+ }
26+
27+ java {
28+ toolchain.languageVersion.set(JavaLanguageVersion .of(17 ))
29+ }
30+
31+ tasks {
32+ test {
33+ useJUnitPlatform()
34+ }
35+ }
36+
37+ repositories {
38+ mavenCentral()
39+ mavenLocal()
40+ maven {
41+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
42+ }
43+ }
44+
45+ dependencies {
46+ kapt(" org.seasar.doma:doma-processor:$domaVersion " )
47+ implementation(" org.seasar.doma:doma-core:$domaVersion " )
48+ implementation(" org.jetbrains.kotlin:kotlin-stdlib" )
49+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.11.2" )
50+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.11.2" )
51+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ rootProject.name = " compile-kotlin-test"
2+
3+ pluginManagement {
4+ includeBuild(" ../compile" )
5+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ buildscript {
2+ repositories {
3+ mavenCentral()
4+ mavenLocal()
5+ maven {
6+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
7+ }
8+ }
9+ dependencies {
10+ classpath(" org.domaframework.doma:compile" )
11+ }
12+ }
13+
14+ plugins {
15+ id(" java" )
16+ id(" org.domaframework.doma.compile" )
17+ id(" org.jetbrains.kotlin.jvm" ) version " 2.0.20"
18+ id(" org.jetbrains.kotlin.kapt" ) version " 2.0.20"
19+ }
20+
21+ val domaVersion = " 3.0.1"
22+
23+ kapt {
24+ includeCompileClasspath = false
25+ }
26+
27+ java {
28+ toolchain.languageVersion.set(JavaLanguageVersion .of( 17 ))
29+ }
30+
31+ tasks {
32+ test {
33+ useJUnitPlatform()
34+ }
35+ }
36+
37+ repositories {
38+ mavenCentral()
39+ mavenLocal()
40+ maven {
41+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
42+ }
43+ }
44+
45+ dependencies {
46+ kapt(" org.seasar.doma:doma-processor:$domaVersion " )
47+ implementation(" org.seasar.doma:doma-core:$domaVersion " )
48+ implementation(" org.jetbrains.kotlin:kotlin-stdlib" )
49+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.11.2" )
50+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.11.2" )
51+ }
You can’t perform that action at this time.
0 commit comments