Drop bintray from Gradle inspections and fixes tests (KTI-528)
This commit is contained in:
committed by
TeamCityServer
parent
7a9c2c1d17
commit
1547d4f516
+1
-1
@@ -22,7 +22,7 @@
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlinx</groupId>
|
||||
<artifactId>kotlinx-coroutines-android</artifactId>
|
||||
<version>0.27.0-eap13</version>
|
||||
<version>0.27.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ object KotlinxVersionUpdater : VersionUpdater {
|
||||
currentVersion.contains("eap13") -> return currentVersion
|
||||
currentVersion.contains("rc13") -> return currentVersion
|
||||
(VersionComparatorUtil.compare(currentVersion, "0.99.0") >= 0) -> return currentVersion // Do not update starting from 1.0.0
|
||||
(VersionComparatorUtil.compare(currentVersion, "0.27.0") < 0) -> return "0.27.0-eap13"
|
||||
(VersionComparatorUtil.compare(currentVersion, "0.27.0") < 0) -> return "0.27.0"
|
||||
else -> "$currentVersion-eap13"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,6 @@ apply plugin: 'kotlin'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url "https://kotlin.bintray.com/kotlinx" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
@@ -15,11 +15,10 @@ apply plugin: 'kotlin'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url "https://kotlin.bintray.com/kotlinx" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.27.0-eap13'
|
||||
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.27.0'
|
||||
}
|
||||
|
||||
compileKotlin {
|
||||
|
||||
@@ -17,7 +17,6 @@ apply plugin: 'kotlin'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url "https://kotlin.bintray.com/kotlinx" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
Reference in New Issue
Block a user