update named modules, netty 4.1.50, cql 3.0.1

This commit is contained in:
Jörg Prante 2020-06-05 11:38:40 +02:00
parent e44b3e2286
commit d14cfe0e08
9 changed files with 21 additions and 17 deletions

View file

@ -1,8 +1,8 @@
group = org.xbib
name = z3950
version = 2.1.0
version = 2.2.0
gradle.wrapper.version = 6.4.1
netty.version = 4.1.49.Final
xbib-cql.version = 3.0.0
xbib-bibliographic-character-sets.version = 1.0.0
netty.version = 4.1.50.Final
xbib-cql.version = 3.0.1
xbib-bibliographic-character-sets.version = 2.0.0

View file

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

View file

@ -1,4 +1,4 @@
module org.xbib.z3950lib.api {
exports org.xbib.z3950.api;
requires org.xbib.z3950lib.asn;
requires transitive org.xbib.z3950lib.asn;
}

View file

@ -1,5 +1,5 @@
dependencies {
implementation project(':z3950-common')
api project(':z3950-common')
implementation "io.netty:netty-handler:${project.property('netty.version')}"
implementation "io.netty:netty-transport:${project.property('netty.version')}"
}
}

View file

@ -1,6 +1,6 @@
module org.xbib.z3950lib.client.netty {
exports org.xbib.z3950.client.netty;
requires org.xbib.z3950lib.common;
requires transitive org.xbib.z3950lib.common;
requires io.netty.handler;
requires io.netty.transport;
}

View file

@ -1,5 +1,4 @@
dependencies {
api project(':z3950-common')
testImplementation "org.xbib:bibliographic-character-sets:${project.property('xbib-bibliographic-character-sets.version')}"
}

View file

@ -1,7 +1,5 @@
module org.xbib.z3950lib.client {
exports org.xbib.z3950.client;
requires org.xbib.z3950lib.common;
requires org.xbib.z3950lib.asn;
requires org.xbib.z3950lib.api;
requires transitive org.xbib.z3950lib.common;
requires java.logging;
}

View file

@ -5,7 +5,7 @@ plugins {
dependencies {
api project(':z3950-api')
implementation "org.xbib:cql-common:${project.property('xbib-cql.version')}"
api "org.xbib:cql-common:${project.property('xbib-cql.version')}"
}
sourceSets {

View file

@ -5,8 +5,7 @@ module org.xbib.z3950lib.common {
exports org.xbib.z3950.common.operations;
exports org.xbib.z3950.common.pqf;
exports org.xbib.z3950.common.v3;
requires org.xbib.z3950lib.api;
requires org.xbib.z3950lib.asn;
requires org.xbib.cql;
requires transitive org.xbib.z3950lib.api;
requires transitive org.xbib.cql;
requires java.logging;
}
}