summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2019-12-31 15:26:51 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-01-05 18:19:32 +0100
commit11d344319b00259a40a368d3c6504c7b26c4ce78 (patch)
tree5b54dac92d80b791291356f0b023916940390cb2
parentRemove gradle metadata feature (now enabled by default) (diff)
downloadseven-wonders-11d344319b00259a40a368d3c6504c7b26c4ce78.tar.gz
seven-wonders-11d344319b00259a40a368d3c6504c7b26c4ce78.tar.bz2
seven-wonders-11d344319b00259a40a368d3c6504c7b26c4ce78.zip
Remove unnecessary EAP Kotlin repository
-rw-r--r--build.gradle.kts2
-rw-r--r--settings.gradle9
2 files changed, 0 insertions, 11 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index af286b54..80d84681 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -10,8 +10,6 @@ plugins {
subprojects {
repositories {
jcenter()
- // keep this as long as the Gradle plugin is used in EAP version
- maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
diff --git a/settings.gradle b/settings.gradle
index 45aeb3cf..ef959461 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,12 +1,3 @@
-pluginManagement {
- // keep this as long as the Gradle plugin is used in EAP version
- repositories {
- maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
- gradlePluginPortal()
- jcenter()
- }
-}
-
rootProject.name = "seven-wonders"
include 'sw-common-model'
bgstack15