summaryrefslogtreecommitdiff
path: root/sw-common-model/build.gradle.kts
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-17 00:01:57 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-17 00:01:57 +0200
commit101dcb7213f4ebf759b0aad65f0976b7f78f4a86 (patch)
treee71fb265979f591cb349f474371846fa670ca2b9 /sw-common-model/build.gradle.kts
parentRationalize module names (diff)
downloadseven-wonders-101dcb7213f4ebf759b0aad65f0976b7f78f4a86.tar.gz
seven-wonders-101dcb7213f4ebf759b0aad65f0976b7f78f4a86.tar.bz2
seven-wonders-101dcb7213f4ebf759b0aad65f0976b7f78f4a86.zip
WIP back to JVM for common module to see if it works
Diffstat (limited to 'sw-common-model/build.gradle.kts')
-rw-r--r--sw-common-model/build.gradle.kts8
1 files changed, 8 insertions, 0 deletions
diff --git a/sw-common-model/build.gradle.kts b/sw-common-model/build.gradle.kts
new file mode 100644
index 00000000..9c8eff58
--- /dev/null
+++ b/sw-common-model/build.gradle.kts
@@ -0,0 +1,8 @@
+plugins {
+ kotlin("jvm")
+ id("org.jlleitschuh.gradle.ktlint")
+}
+
+dependencies {
+ implementation(kotlin("stdlib-jdk8"))
+}
bgstack15