File tree Expand file tree Collapse file tree 7 files changed +0
-72
lines changed
src/main/java/example/geometric/type/domain
src/main/java/example/jpms/domain Expand file tree Collapse file tree 7 files changed +0
-72
lines changed Original file line number Diff line number Diff line change 11plugins {
22 java
33}
4-
5- tasks {
6- compileJava {
7- val aptOptions = extensions.getByType< com.diffplug.gradle.eclipse.apt.AptPlugin .AptOptions > ()
8- aptOptions.processorArgs =
9- mapOf (
10- " doma.domain.converters" to " example.common.domain.DomainConverterProvider" ,
11- )
12- // If you are not using Eclipse, you can simply write the above code as follows without using aptOptions;
13- // options.compilerArgs.add("-Adoma.domain.converters=example.common.domain.DomainConverterProvider")
14- }
15- }
Original file line number Diff line number Diff line change @@ -7,15 +7,3 @@ dependencies {
77 testImplementation(platform(libs.testcontainers.bom))
88 testImplementation(libs.testcontainers.postgresql)
99}
10-
11- tasks {
12- compileJava {
13- val aptOptions = extensions.getByType< com.diffplug.gradle.eclipse.apt.AptPlugin .AptOptions > ()
14- aptOptions.processorArgs =
15- mapOf (
16- " doma.domain.converters" to " example.geometric.type.domain.DomainConverterProvider" ,
17- )
18- // If you are not using Eclipse, you can simply write the above code as follows without using aptOptions;
19- // options.compilerArgs.add("-Adoma.domain.converters=example.geometric.type.domain.DomainConverterProvider")
20- }
21- }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,18 +3,6 @@ plugins {
33 application
44}
55
6- tasks {
7- compileJava {
8- val aptOptions = extensions.getByType< com.diffplug.gradle.eclipse.apt.AptPlugin .AptOptions > ()
9- aptOptions.processorArgs =
10- mapOf (
11- " doma.domain.converters" to " example.jpms.domain.DomainConverterProvider" ,
12- )
13- // If you are not using Eclipse, you can simply write the above code as follows without using aptOptions;
14- // options.compilerArgs.add("-Adoma.domain.converters=example.jpms.domain.DomainConverterProvider")
15- }
16- }
17-
186application {
197 mainClass.set(" example.jpms_java.Main" )
208}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,18 +2,6 @@ plugins {
22 java
33}
44
5- tasks {
6- compileJava {
7- val aptOptions = extensions.getByType< com.diffplug.gradle.eclipse.apt.AptPlugin .AptOptions > ()
8- aptOptions.processorArgs =
9- mapOf (
10- " doma.domain.converters" to " example.common.domain.DomainConverterProvider" ,
11- )
12- // If you are not using Eclipse, you can simply write the above code as follows without using aptOptions;
13- // options.compilerArgs.add("-Adoma.domain.converters=example.common.domain.DomainConverterProvider")
14- }
15- }
16-
175dependencies {
186 implementation(project(" :common" ))
197 testImplementation(project(" :common-test" ))
Original file line number Diff line number Diff line change @@ -2,18 +2,6 @@ plugins {
22 java
33}
44
5- tasks {
6- compileJava {
7- val aptOptions = extensions.getByType< com.diffplug.gradle.eclipse.apt.AptPlugin .AptOptions > ()
8- aptOptions.processorArgs =
9- mapOf (
10- " doma.domain.converters" to " example.common.domain.DomainConverterProvider" ,
11- )
12- // If you are not using Eclipse, you can simply write the above code as follows without using aptOptions;
13- // options.compilerArgs.add("-Adoma.domain.converters=example.common.domain.DomainConverterProvider")
14- }
15- }
16-
175dependencies {
186 implementation(project(" :common" ))
197 testImplementation(project(" :common-test" ))
You can’t perform that action at this time.
0 commit comments