update named modules, netty 4.1.50, cql 3.0.1
This commit is contained in:
parent
e44b3e2286
commit
d14cfe0e08
9 changed files with 21 additions and 17 deletions
|
@ -1,8 +1,8 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = z3950
|
name = z3950
|
||||||
version = 2.1.0
|
version = 2.2.0
|
||||||
|
|
||||||
gradle.wrapper.version = 6.4.1
|
gradle.wrapper.version = 6.4.1
|
||||||
netty.version = 4.1.49.Final
|
netty.version = 4.1.50.Final
|
||||||
xbib-cql.version = 3.0.0
|
xbib-cql.version = 3.0.1
|
||||||
xbib-bibliographic-character-sets.version = 1.0.0
|
xbib-bibliographic-character-sets.version = 2.0.0
|
|
@ -33,3 +33,11 @@ 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')
|
||||||
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module org.xbib.z3950lib.api {
|
module org.xbib.z3950lib.api {
|
||||||
exports org.xbib.z3950.api;
|
exports org.xbib.z3950.api;
|
||||||
requires org.xbib.z3950lib.asn;
|
requires transitive org.xbib.z3950lib.asn;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':z3950-common')
|
api project(':z3950-common')
|
||||||
implementation "io.netty:netty-handler:${project.property('netty.version')}"
|
implementation "io.netty:netty-handler:${project.property('netty.version')}"
|
||||||
implementation "io.netty:netty-transport:${project.property('netty.version')}"
|
implementation "io.netty:netty-transport:${project.property('netty.version')}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module org.xbib.z3950lib.client.netty {
|
module org.xbib.z3950lib.client.netty {
|
||||||
exports org.xbib.z3950.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.handler;
|
||||||
requires io.netty.transport;
|
requires io.netty.transport;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':z3950-common')
|
api project(':z3950-common')
|
||||||
testImplementation "org.xbib:bibliographic-character-sets:${project.property('xbib-bibliographic-character-sets.version')}"
|
testImplementation "org.xbib:bibliographic-character-sets:${project.property('xbib-bibliographic-character-sets.version')}"
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,7 +1,5 @@
|
||||||
module org.xbib.z3950lib.client {
|
module org.xbib.z3950lib.client {
|
||||||
exports org.xbib.z3950.client;
|
exports org.xbib.z3950.client;
|
||||||
requires org.xbib.z3950lib.common;
|
requires transitive org.xbib.z3950lib.common;
|
||||||
requires org.xbib.z3950lib.asn;
|
|
||||||
requires org.xbib.z3950lib.api;
|
|
||||||
requires java.logging;
|
requires java.logging;
|
||||||
}
|
}
|
|
@ -5,7 +5,7 @@ plugins {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':z3950-api')
|
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 {
|
sourceSets {
|
||||||
|
|
|
@ -5,8 +5,7 @@ module org.xbib.z3950lib.common {
|
||||||
exports org.xbib.z3950.common.operations;
|
exports org.xbib.z3950.common.operations;
|
||||||
exports org.xbib.z3950.common.pqf;
|
exports org.xbib.z3950.common.pqf;
|
||||||
exports org.xbib.z3950.common.v3;
|
exports org.xbib.z3950.common.v3;
|
||||||
requires org.xbib.z3950lib.api;
|
requires transitive org.xbib.z3950lib.api;
|
||||||
requires org.xbib.z3950lib.asn;
|
requires transitive org.xbib.cql;
|
||||||
requires org.xbib.cql;
|
|
||||||
requires java.logging;
|
requires java.logging;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue