summaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-22 02:17:33 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-22 02:17:33 +0200
commit36a3b94972fb30a1e9a17973d55179c7a4595b28 (patch)
tree0a7d6cd6cd8e89b081a88690029a42356a98a702 /settings.gradle
parentFix tests (diff)
downloadseven-wonders-36a3b94972fb30a1e9a17973d55179c7a4595b28.tar.gz
seven-wonders-36a3b94972fb30a1e9a17973d55179c7a4595b28.tar.bz2
seven-wonders-36a3b94972fb30a1e9a17973d55179c7a4595b28.zip
Make common project multiplatform
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle18
1 files changed, 9 insertions, 9 deletions
diff --git a/settings.gradle b/settings.gradle
index ca9aea78..11445e6c 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,12 +1,12 @@
-//pluginManagement {
-// resolutionStrategy {
-// eachPlugin {
-// if (requested.id.id == "kotlin-multiplatform") {
-// useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
-// }
-// }
-// }
-//}
+pluginManagement {
+ resolutionStrategy {
+ eachPlugin {
+ if (requested.id.id == "kotlin-multiplatform") {
+ useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
+ }
+ }
+ }
+}
rootProject.name = "seven-wonders"
bgstack15