Use maven central for dependencies for all projects

This commit is contained in:
Ilya Gorbunov
2017-01-19 02:18:37 +03:00
parent dfdce5ff58
commit 25e69962f3
+5
View File
@@ -2,6 +2,7 @@
buildscript { buildscript {
ext.kotlin_version = "1.1-SNAPSHOT" ext.kotlin_version = "1.1-SNAPSHOT"
repositories { repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap-1.1' } maven { url 'http://dl.bintray.com/kotlin/kotlin-eap-1.1' }
} }
dependencies { dependencies {
@@ -20,6 +21,10 @@ subprojects {
apply plugin: 'kotlin' apply plugin: 'kotlin'
apply plugin: 'signing' apply plugin: 'signing'
repositories {
mavenCentral()
}
jar { jar {
baseName = project.name baseName = project.name
manifest { manifest {