diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-17 00:01:57 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-17 00:01:57 +0200 |
commit | 101dcb7213f4ebf759b0aad65f0976b7f78f4a86 (patch) | |
tree | e71fb265979f591cb349f474371846fa670ca2b9 /sw-common-model/build.gradle.kts | |
parent | Rationalize module names (diff) | |
download | seven-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.kts | 8 |
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")) +} |