Browse Source

Update from unstable kotlin versions

tags/v0.1.0
Chris Smith 5 years ago
parent
commit
748e0884f8
2 changed files with 6 additions and 14 deletions
  1. 6
    8
      build.gradle.kts
  2. 0
    6
      settings.gradle.kts

+ 6
- 8
build.gradle.kts View File

@@ -5,7 +5,7 @@ group = "com.dmdirc.ktirc"
5 5
 
6 6
 plugins {
7 7
     `maven-publish`
8
-    kotlin("jvm") version "1.3.0-rc-190"
8
+    kotlin("jvm") version "1.3.20"
9 9
     id("com.jfrog.bintray") version "1.8.4"
10 10
 }
11 11
 
@@ -17,16 +17,14 @@ configurations {
17 17
 repositories {
18 18
     jcenter()
19 19
     mavenCentral()
20
-    maven("http://dl.bintray.com/kotlin/kotlin-eap")
21
-    maven("https://dl.bintray.com/kotlin/ktor")
22 20
 }
23 21
 
24 22
 dependencies {
25
-    implementation(kotlin("stdlib-jdk8", "1.3.0-rc-190"))
26
-    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.2-eap13")
27
-    implementation("io.ktor:ktor-network:1.0.0-beta-1")
23
+    implementation(kotlin("stdlib-jdk8", "1.3.20"))
24
+    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1")
25
+    implementation("io.ktor:ktor-network:1.1.2")
28 26
 
29
-    testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.0.0-RC3")
27
+    testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0")
30 28
     testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1")
31 29
     testImplementation("org.junit.jupiter:junit-jupiter-params:5.3.1")
32 30
     testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.1")
@@ -73,7 +71,7 @@ tasks.withType<Test> {
73 71
 configurations.all {
74 72
     resolutionStrategy.eachDependency {
75 73
         if (requested.group == "org.jetbrains.kotlin") {
76
-            useVersion("1.3.0-rc-190")
74
+            useVersion("1.3.20")
77 75
         }
78 76
     }
79 77
 }

+ 0
- 6
settings.gradle.kts View File

@@ -1,6 +0,0 @@
1
-pluginManagement {
2
-    repositories {
3
-        gradlePluginPortal()
4
-        maven("http://dl.bintray.com/kotlin/kotlin-eap")
5
-    }
6
-}

Loading…
Cancel
Save