libeufin

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

commit 4859be076b0780921fdfe8c8f63320797ddbe3cf
parent b06b6631c075fe1c48c79b7b3d3172c0ec52098b
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Tue,  8 Oct 2019 14:46:09 +0200

import Kotlin.Jvm from global Gradle file

Diffstat:
Mbuild.gradle | 6+++---
Mnexus/build.gradle | 4----
Msandbox/build.gradle | 5-----
3 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/build.gradle b/build.gradle @@ -3,6 +3,9 @@ plugins { } allprojects { + apply plugin : "org.jetbrains.kotlin.jvm" + apply plugin : "application" + apply plugin : "java" repositories { mavenCentral() @@ -28,9 +31,6 @@ subprojects { } } - apply plugin : "application" - apply plugin : "java" - dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "io.ktor:ktor-gson:1.1.5" diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -1,7 +1,3 @@ -plugins { - id "org.jetbrains.kotlin.jvm" -} - application { mainClassName = "tech.libeufin.nexus.MainKt" } diff --git a/sandbox/build.gradle b/sandbox/build.gradle @@ -1,8 +1,3 @@ -plugins { - // FIXME: must go into the global file. - id "org.jetbrains.kotlin.jvm" -} - application { mainClassName = "tech.libeufin.sandbox.MainKt" }