oai/oai-client/build.gradle

22 lines
813 B
Groovy
Raw Normal View History

2016-11-10 13:30:42 +01:00
configurations {
alpnboot
}
dependencies {
compile project(':oai-common')
compile "org.xbib:marc:${project.property('xbib-marc.version')}"
compile "org.xbib.helianthus:helianthus-client:${project.property('helianthus.version')}"
compile "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
testCompile "org.xbib:bibliographic-character-sets:${project.property('xbib-bibliographic-character-sets.version')}"
alpnagent "org.mortbay.jetty.alpn:jetty-alpn-agent:${project.property('alpnagent.version')}"
2016-11-10 13:30:42 +01:00
}
test {
jvmArgs "-javaagent:" + configurations.alpnagent.asPath
2016-11-10 13:30:42 +01:00
testLogging {
showStandardStreams = true
exceptionFormat = 'full'
}
systemProperty 'java.util.logging.manager', 'org.apache.logging.log4j.jul.LogManager'
}