update to content 2.3.1

This commit is contained in:
Jörg Prante 2020-06-05 11:18:47 +02:00
parent 67b36609fe
commit dbed021104
3 changed files with 13 additions and 5 deletions

View file

@ -2,6 +2,6 @@ module org.xbib.cql.elasticsearch {
exports org.xbib.cql.elasticsearch; exports org.xbib.cql.elasticsearch;
exports org.xbib.cql.elasticsearch.ast; exports org.xbib.cql.elasticsearch.ast;
exports org.xbib.cql.elasticsearch.model; exports org.xbib.cql.elasticsearch.model;
requires org.xbib.cql; requires transitive org.xbib.cql;
requires org.xbib.content.core; requires transitive org.xbib.content.core;
} }

View file

@ -1,6 +1,6 @@
group = org.xbib group = org.xbib
name = cql name = cql
version = 3.0.0 version = 3.0.1
gradle.wrapper.version = 6.4.1 gradle.wrapper.version = 6.4.1
xbib-content.version = 2.2.0 xbib-content.version = 2.3.1

View file

@ -32,4 +32,12 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
artifacts { artifacts {
archives sourcesJar, javadocJar archives sourcesJar, javadocJar
} }
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all,-fallthrough'
}
javadoc {
options.addStringOption('Xdoclint:none', '-quiet')
}