update repos

This commit is contained in:
InsanusMokrassar 2020-10-16 17:59:51 +06:00
parent 87230d010c
commit 3babc94842
3 changed files with 8 additions and 24 deletions

View File

@ -14,11 +14,13 @@ buildscript {
} }
} }
repositories { allprojects {
mavenLocal() repositories {
jcenter() jcenter()
mavenCentral() mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" } maven { url "https://kotlin.bintray.com/kotlinx" }
mavenLocal()
}
} }
apply from: "./extensions.gradle" apply from: "./extensions.gradle"

View File

@ -3,13 +3,6 @@ project.group = "$group"
apply from: "$publishGradlePath" apply from: "$publishGradlePath"
repositories {
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
mavenLocal()
}
kotlin { kotlin {
jvm() jvm()

View File

@ -3,21 +3,10 @@ project.group = "$group"
apply from: "$publishGradlePath" apply from: "$publishGradlePath"
repositories {
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
mavenLocal()
}
kotlin { kotlin {
jvm() jvm()
js (BOTH) { js (BOTH) {
browser { browser()
dceTask {
dceOptions.devMode = true
}
}
nodejs() nodejs()
} }