summaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-22 01:35:25 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-22 01:35:25 +0200
commitbb4a1cebda4cc2177b3d2aab5201ce5ea699720b (patch)
tree4e40eec89595ae4be2c238b73bfef568ccc6c073 /settings.gradle
parentMove some declarations to a better place (diff)
downloadseven-wonders-bb4a1cebda4cc2177b3d2aab5201ce5ea699720b.tar.gz
seven-wonders-bb4a1cebda4cc2177b3d2aab5201ce5ea699720b.tar.bz2
seven-wonders-bb4a1cebda4cc2177b3d2aab5201ce5ea699720b.zip
Comment plugin management related to unused multiplatform plugin
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 11445e6c..ca9aea78 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