Skip to content

Commit 4881b7c

Browse files
committed
fixed url warning
1 parent 1dcf49b commit 4881b7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ buildscript {
1717
repositories {
1818
mavenCentral()
1919
jcenter()
20-
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
21-
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
20+
maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }
21+
maven { setUrl("https://oss.sonatype.org/content/repositories/snapshots/") }
2222
}
2323
dependencies {
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
@@ -73,9 +73,9 @@ dependencies {
7373
repositories {
7474
mavenCentral()
7575
jcenter()
76-
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
77-
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
78-
maven { url "https://jitpack.io" }
76+
maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }
77+
maven { setUrl("https://oss.sonatype.org/content/repositories/snapshots/") }
78+
maven { setUrl("https://jitpack.io") }
7979
}
8080

8181
task sourcesJar(type: Jar, dependsOn: classes) {

0 commit comments

Comments
 (0)