commit c48f48113387f7b84a3b5109ee91b3b2f7888696
parent 74f994d95aa1d518ad8e841a2aadd5d387c2c197
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 4 Nov 2019 11:40:29 +0100
build system / deps
Diffstat:
2 files changed, 24 insertions(+), 21 deletions(-)
diff --git a/nexus/build.gradle b/nexus/build.gradle
@@ -23,16 +23,17 @@ compileTestKotlin {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "io.ktor:ktor-gson:1.1.5"
- compile group: 'io.ktor', name: 'ktor-gson', version: '0.9.0'
- compile "org.jetbrains.exposed:exposed:0.17.3"
- compile "io.ktor:ktor-server-netty:1.2.4"
- compile "ch.qos.logback:logback-classic:1.2.3"
- compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
- compile "javax.xml.bind:jaxb-api:2.3.0"
- compile group: 'xerces', name: 'xercesImpl', version: '2.6.2-jaxb-1.0.6'
- compile "javax.activation:activation:1.1"
- compile "org.glassfish.jaxb:jaxb-runtime:2.3.1"
- testCompile group: 'junit', name: 'junit', version: '4.12'
+ implementation group: 'io.ktor', name: 'ktor-gson', version: '0.9.0'
+ implementation "org.jetbrains.exposed:exposed:0.17.3"
+ implementation "io.ktor:ktor-server-netty:1.2.4"
+ implementation "ch.qos.logback:logback-classic:1.2.3"
+ implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
+ implementation "javax.xml.bind:jaxb-api:2.3.0"
+ implementation group: 'xerces', name: 'xercesImpl', version: '2.6.2-jaxb-1.0.6'
+ implementation "javax.activation:activation:1.1"
+ implementation "org.glassfish.jaxb:jaxb-runtime:2.3.1"
+
+ testImplementation group: 'junit', name: 'junit', version: '4.12'
}
application {
diff --git a/sandbox/build.gradle b/sandbox/build.gradle
@@ -28,19 +28,21 @@ sourceSets {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "io.ktor:ktor-gson:1.1.5"
- compile group: 'io.ktor', name: 'ktor-gson', version: '0.9.0'
- compile "org.jetbrains.exposed:exposed:0.17.6"
- compile "io.ktor:ktor-server-netty:1.2.4"
- compile "ch.qos.logback:logback-classic:1.2.3"
- compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
- compile "javax.xml.bind:jaxb-api:2.3.0"
- compile group: 'xerces', name: 'xercesImpl', version: '2.6.2-jaxb-1.0.6'
- compile "javax.activation:activation:1.1"
- compile "org.glassfish.jaxb:jaxb-runtime:2.3.1"
- testCompile group: 'junit', name: 'junit', version: '4.12'
+ implementation group: 'io.ktor', name: 'ktor-gson', version: '0.9.0'
+ implementation "org.jetbrains.exposed:exposed:0.17.6"
+ implementation "io.ktor:ktor-server-netty:1.2.4"
+ implementation "ch.qos.logback:logback-classic:1.2.3"
+ implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
+ implementation "javax.xml.bind:jaxb-api:2.3.0"
+ implementation group: 'xerces', name: 'xercesImpl', version: '2.6.2-jaxb-1.0.6'
+ implementation "javax.activation:activation:1.1"
+ implementation "org.glassfish.jaxb:jaxb-runtime:2.3.1"
+ implementation 'org.apache.santuario:xmlsec:2.1.4'
+ implementation group: 'org.bouncycastle', name: 'bcprov-jdk16', version: '1.45'
+
+ testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.50'
testImplementation 'org.jetbrains.kotlin:kotlin-test:1.3.50'
- compile 'org.apache.santuario:xmlsec:2.1.4'
}
application {