update to content 2.3.1
This commit is contained in:
parent
67b36609fe
commit
dbed021104
3 changed files with 13 additions and 5 deletions
|
@ -2,6 +2,6 @@ module org.xbib.cql.elasticsearch {
|
|||
exports org.xbib.cql.elasticsearch;
|
||||
exports org.xbib.cql.elasticsearch.ast;
|
||||
exports org.xbib.cql.elasticsearch.model;
|
||||
requires org.xbib.cql;
|
||||
requires org.xbib.content.core;
|
||||
requires transitive org.xbib.cql;
|
||||
requires transitive org.xbib.content.core;
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
group = org.xbib
|
||||
name = cql
|
||||
version = 3.0.0
|
||||
version = 3.0.1
|
||||
|
||||
gradle.wrapper.version = 6.4.1
|
||||
xbib-content.version = 2.2.0
|
||||
xbib-content.version = 2.3.1
|
||||
|
|
|
@ -32,4 +32,12 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
|
|||
|
||||
artifacts {
|
||||
archives sourcesJar, javadocJar
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.compilerArgs << '-Xlint:all,-fallthrough'
|
||||
}
|
||||
|
||||
javadoc {
|
||||
options.addStringOption('Xdoclint:none', '-quiet')
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue