From 101dcb7213f4ebf759b0aad65f0976b7f78f4a86 Mon Sep 17 00:00:00 2001 From: Joffrey BION Date: Fri, 17 May 2019 00:01:57 +0200 Subject: WIP back to JVM for common module to see if it works --- sw-common-model/build.gradle | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 sw-common-model/build.gradle (limited to 'sw-common-model/build.gradle') 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') - } - } - } -} -- cgit