summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-10-25 11:24:06 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-10-25 11:24:06 +0200
commit3a53d8825b47d71232d6d1a4e19164515be29020 (patch)
treea210be6d9bb8ce756791bc6db48807e08abda24a /build.gradle
parentfd7f50ca8f4d846350493de840e6c341e9e75543 (diff)
downloadlibeufin-3a53d8825b47d71232d6d1a4e19164515be29020.tar.gz
libeufin-3a53d8825b47d71232d6d1a4e19164515be29020.tar.bz2
libeufin-3a53d8825b47d71232d6d1a4e19164515be29020.zip
share less build settings between gradle modules
Each module will have its own set of dependencies, they should be declared separately. Furthermore, the old configuration broke running "./gradlew build" from the top level directory.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle43
1 files changed, 0 insertions, 43 deletions
diff --git a/build.gradle b/build.gradle
index 6295ab1e..20f963b4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,49 +1,6 @@
-plugins {
- id "org.jetbrains.kotlin.jvm" version "1.3.50"
-}
-
allprojects {
- apply plugin : "org.jetbrains.kotlin.jvm"
- apply plugin : "application"
- apply plugin : "java"
-
repositories {
mavenCentral()
jcenter()
}
}
-
-subprojects {
-
- version '1.0-SNAPSHOT'
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
-
- compileKotlin {
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
-
- compileTestKotlin {
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
-
- 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'
- runtime rootProject.files("resources")
- }
-} \ No newline at end of file