Skip to content

Commit 74e3e5c

Browse files
ffgiraldezJorgeCastilloPrz
authored andcommitted
Update kotlin version, return incremental compilation and update README
1 parent e58581d commit 74e3e5c

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ allprojects {
4949
repositories {
5050
...
5151
maven { url 'https://jitpack.io' }
52+
maven { url 'https://kotlin.bintray.com/kotlinx' }
53+
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
5254
}
5355
}
5456
```

build.gradle

+3-7
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,14 @@ buildscript {
2424
javaVersion = '1.7'
2525
katzVersion = '0.1-SNAPSHOT'
2626
kotlinTestVersion = '2.0.0'
27-
kotlinVersion = '1.1.3-dev-1334'
27+
kotlinVersion = '1.1.3-dev-1450'
2828
kotlinxCollectionsImmutableVersion = '0.1'
2929
kotlinxCoroutinesVersion = '0.14.1'
3030
}
3131

3232
repositories {
3333
jcenter()
34-
maven {
35-
url "http://dl.bintray.com/kotlin/kotlin-dev"
36-
}
34+
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
3735
}
3836

3937
dependencies {
@@ -46,9 +44,7 @@ allprojects {
4644
repositories {
4745
jcenter()
4846
maven { url 'https://kotlin.bintray.com/kotlinx' }
49-
maven {
50-
url "http://dl.bintray.com/kotlin/kotlin-dev"
51-
}
47+
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
5248
}
5349

5450
apply plugin: 'kotlin'

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ org.gradle.jvmargs=-Xmx2048m
3434

3535
# Kotlin configuration
3636
kotlin.coroutines=enable
37-
kotlin.incremental=false
37+
kotlin.incremental=true

0 commit comments

Comments
 (0)