Skip to content

Commit

Permalink
Updating kotlin dependencies (#24)
Browse files Browse the repository at this point in the history
and bumping up minor version
  • Loading branch information
Tomek Polański authored Jan 15, 2017
1 parent b585b78 commit 080c904
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ To your module level gradle.build add dependency:
``` Groovy
dependencies {
// other dependencies
compile 'com.github.tomaszpolanski:options:1.2.5'
compile 'com.github.tomaszpolanski:options:1.3.0'
}
```

Expand Down
1 change: 1 addition & 0 deletions options/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ allprojects {
ext {
JAVA_SOURCE_COMPATIBILITY = 1.6
JAVA_TARGET_COMPATIBILITY = 1.6
KOTLIN_VERSION = '1.0.6'
}
}

Expand Down
5 changes: 2 additions & 3 deletions options/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jacocoTestReport {
check.dependsOn jacocoTestReport

buildscript {
ext.kotlin_version = '1.0.1-2'
repositories {
mavenLocal()
mavenCentral()
Expand All @@ -23,11 +22,11 @@ buildscript {
maven { url "http://repo1.maven.org/maven2/" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.1-2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$project.ext.KOTLIN_VERSION"
}
}

version = '1.2.5'
version = '1.3.0'
sourceCompatibility = project.ext.JAVA_SOURCE_COMPATIBILITY
targetCompatibility = project.ext.JAVA_TARGET_COMPATIBILITY

Expand Down

0 comments on commit 080c904

Please sign in to comment.