Skip to content

Commit 37858b8

Browse files
authored
Merge pull request #393 from domaframework/criteria-java
Delete the Criteria API of the Kotlin implimentation and rewrite it i…
2 parents 3b0a84c + 2efec87 commit 37858b8

File tree

196 files changed

+7074
-8909
lines changed

Some content is hidden

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

196 files changed

+7074
-8909
lines changed

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") {

0 commit comments

Comments
 (0)