Skip to content

Commit 6551765

Browse files
committed
[Gradle Release Plugin] - pre tag commit: '2.32.0'.
2 parents 9a454b3 + 88df4c1 commit 6551765

File tree

227 files changed

+7629
-9002
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+7629
-9002
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Build with Gradle
5555

5656
```groovy
5757
dependencies {
58-
implementation "org.seasar.doma:doma-core:2.31.0"
59-
annotationProcessor "org.seasar.doma:doma-processor:2.31.0"
58+
implementation "org.seasar.doma:doma-core:2.32.0"
59+
annotationProcessor "org.seasar.doma:doma-processor:2.32.0"
6060
}
6161
```
6262

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ subprojects {
113113
}
114114
}
115115

116-
configure(subprojects.filter { it.name in listOf("doma-core", "doma-processor", "doma-criteria") }) {
116+
configure(subprojects.filter { it.name in listOf("doma-core", "doma-processor") }) {
117117
val javadoc by tasks.existing(Javadoc::class) {
118118
options.encoding = encoding
119119
(options as StandardJavadocDocletOptions).apply {
@@ -192,7 +192,7 @@ rootProject.apply {
192192

193193
fun replaceVersionInDocs(ver: String) {
194194
ant.withGroovyBuilder {
195-
"replaceregexp"("match" to """("org.seasar.doma:doma-(core|processor|criteria)?:)[^"]*(")""",
195+
"replaceregexp"("match" to """("org.seasar.doma:doma-(core|processor)?:)[^"]*(")""",
196196
"replace" to "\\1${ver}\\3",
197197
"encoding" to encoding,
198198
"flags" to "g") {

docs/annotation-processing.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ and show you how to pass them to build tools.
1313
Options
1414
=======
1515

16+
doma.criteria.enabled
17+
Whether to generate meta classes for the Criteria API.
18+
The default value is ``true``.
19+
20+
doma.criteria.prefix
21+
The name prefix of the meta classes for the Criteria API.
22+
The default value is an empty string.
23+
24+
doma.criteria.suffix
25+
The name suffix of the meta classes for the Criteria API.
26+
The default value is ``_``.
27+
1628
doma.dao.package
1729
The package that the generated implementation classes of interfaces annotated with ``@Dao`` belong to.
1830
The specified value overrides the value of doma.dao.subpackage.

docs/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Write your build.gradle as follows:
3535
.. code-block:: groovy
3636
3737
dependencies {
38-
implementation "org.seasar.doma:doma-core:2.31.0"
39-
annotationProcessor "org.seasar.doma:doma-processor:2.31.0"
38+
implementation "org.seasar.doma:doma-core:2.32.0"
39+
annotationProcessor "org.seasar.doma:doma-processor:2.32.0"
4040
}
4141
4242
To simplify your build.script, we recommend that you use the `Doma Compile Plugin`_.

0 commit comments

Comments
 (0)