libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 4b42ca558d2b2d55220a0356ed3feefda8681fea
parent 360d0f8879195fcb95fc3ea6ae95c8c7112270c3
Author: Florian Dold <florian@dold.me>
Date:   Thu, 21 Jan 2021 18:01:00 +0100

dependencies

Diffstat:
Mnexus/build.gradle | 4++--
Msandbox/build.gradle | 6+++---
Mutil/build.gradle | 8++++++--
3 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -102,8 +102,8 @@ dependencies { // Unit testing testImplementation 'junit:junit:4.12' - testImplementation 'org.jetbrains.kotlin:kotlin-test:1.3.50' - testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.50' + testImplementation 'org.jetbrains.kotlin:kotlin-test:1.4.30-RC' + testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.4.30-RC' } application { diff --git a/sandbox/build.gradle b/sandbox/build.gradle @@ -40,7 +40,7 @@ sourceSets { main.java.srcDirs = ['src/main/java', 'src/main/kotlin'] } -def ktor_version = "1.3.2" +def ktor_version = "1.5.0" def exposed_version = "0.25.1" dependencies { @@ -66,8 +66,8 @@ dependencies { implementation "io.ktor:ktor-server-netty:$ktor_version" implementation "io.ktor:ktor-jackson:$ktor_version" - testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.50' - testImplementation 'org.jetbrains.kotlin:kotlin-test:1.3.50' + testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.4.30-RC' + testImplementation 'org.jetbrains.kotlin:kotlin-test:1.4.30-RC' testImplementation group: "junit", name: "junit", version: "4.12" implementation project(":util") diff --git a/util/build.gradle b/util/build.gradle @@ -41,12 +41,16 @@ dependencies { implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.64' implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.20' + // https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-reflect + implementation group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.4.0' + + implementation "org.jetbrains.exposed:exposed-core:$exposed_version" implementation "org.jetbrains.exposed:exposed-dao:$exposed_version" 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' + testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.4.30-RC' + testImplementation 'org.jetbrains.kotlin:kotlin-test:1.4.30-RC' }