Skip to content

Commit

Permalink
Update kotlin version, return incremental compilation and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ffgiraldez authored and JorgeCastilloPrz committed Apr 21, 2017
1 parent e58581d commit 74e3e5c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
maven { url 'https://kotlin.bintray.com/kotlinx' }
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
}
}
```
Expand Down
10 changes: 3 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,14 @@ buildscript {
javaVersion = '1.7'
katzVersion = '0.1-SNAPSHOT'
kotlinTestVersion = '2.0.0'
kotlinVersion = '1.1.3-dev-1334'
kotlinVersion = '1.1.3-dev-1450'
kotlinxCollectionsImmutableVersion = '0.1'
kotlinxCoroutinesVersion = '0.14.1'
}

repositories {
jcenter()
maven {
url "http://dl.bintray.com/kotlin/kotlin-dev"
}
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
}

dependencies {
Expand All @@ -46,9 +44,7 @@ allprojects {
repositories {
jcenter()
maven { url 'https://kotlin.bintray.com/kotlinx' }
maven {
url "http://dl.bintray.com/kotlin/kotlin-dev"
}
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
}

apply plugin: 'kotlin'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ org.gradle.jvmargs=-Xmx2048m

# Kotlin configuration
kotlin.coroutines=enable
kotlin.incremental=false
kotlin.incremental=true

0 comments on commit 74e3e5c

Please sign in to comment.