Skip to content

Commit 725d7b7

Browse files
committed
Add build script comments for clarity
1 parent 9e7e086 commit 725d7b7

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

common/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@ tasks {
99
mapOf(
1010
"doma.domain.converters" to "example.common.domain.DomainConverterProvider",
1111
)
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")
1214
}
1315
}

example-geometric-type/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ tasks {
1515
mapOf(
1616
"doma.domain.converters" to "example.geometric.type.domain.DomainConverterProvider",
1717
)
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")
1820
}
1921
}

example-jpms/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ tasks {
1010
mapOf(
1111
"doma.domain.converters" to "example.jpms.domain.DomainConverterProvider",
1212
)
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")
1315
}
1416
}
1517

example-sql-annotation/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ tasks {
99
mapOf(
1010
"doma.domain.converters" to "example.common.domain.DomainConverterProvider",
1111
)
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")
1214
}
1315
}
1416

example-sql-file/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ tasks {
99
mapOf(
1010
"doma.domain.converters" to "example.common.domain.DomainConverterProvider",
1111
)
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")
1214
}
1315
}
1416

0 commit comments

Comments
 (0)