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 | |
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')
-rw-r--r-- | sw-common-model/build.gradle | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/sw-common-model/build.gradle b/sw-common-model/build.gradle deleted file mode 100644 index b8bdb97b..00000000 --- a/sw-common-model/build.gradle +++ /dev/null @@ -1,42 +0,0 @@ -plugins { - id 'kotlin-multiplatform' -} - -kotlin { - jvm() - js() - sourceSets { - commonMain { - dependencies { - implementation kotlin('stdlib-common') - } - } - commonTest { - dependencies { - implementation kotlin('test-common') - implementation kotlin('test-annotations-common') - } - } - jvmMain { - dependencies { - implementation kotlin('stdlib-jdk8') - } - } - jvmTest { - dependencies { - implementation kotlin('test') - implementation kotlin('test-junit') - } - } - jsMain { - dependencies { - implementation kotlin('stdlib-js') - } - } - jsTest { - dependencies { - implementation kotlin('test-js') - } - } - } -} |