Skip to content

Commit

Permalink
Upgrade to Kotlin 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed Mar 1, 2017
1 parent 7cfc8db commit c8ce15e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,12 @@ Install the dependency from Maven Central or JCenter with:
</dependency>
```

For now you will need to add https://dl.bintray.com/kotlin/kotlin-eap-1.1 as a repository to resolve against, as Rewrite is written (ironically perhaps) in a Kotlin 1.1 Beta.

or

```groovy
compile 'com.netflix.devinsight.rewrite:rewrite-core:0.18.4'
```

(Again, you will need to add the kotlin-eap-1.1 repository mentioned above)

Add the Maven or Gradle classifier `jdkbundle` to fetch a version of the package that package relocates and shades the relevant parts of the JDK needed for parsing into the distribution.

## Features
Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ buildscript {
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap-1.1' }
}
dependencies {
classpath 'com.netflix.nebula:nebula-publishing-plugin:4.9.1'
classpath 'com.netflix.nebula:nebula-kotlin-plugin:1.1.0-rc-91'
classpath 'com.netflix.nebula:nebula-kotlin-plugin:1.1.0'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:3.5.2'
classpath 'org.apache.ant:ant:1.9.4' // otherwise shadowJar blows up in subproject
Expand Down
2 changes: 1 addition & 1 deletion rewrite-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
compile 'com.koloboke:koloboke-api-jdk8:latest.release'
compile 'com.koloboke:koloboke-impl-jdk8:latest.release'

compile 'com.fasterxml.jackson.core:jackson-databind:2.8.6', optional
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.7', optional

compile 'org.ow2.asm:asm:latest.release'
compile 'org.ow2.asm:asm-util:latest.release'
Expand Down
8 changes: 4 additions & 4 deletions rewrite-jackson/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ dependencies {
compile project(':rewrite-core'), optional
}

compile 'com.fasterxml.jackson.core:jackson-databind:2.8.6'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.6'
compile 'com.fasterxml.jackson.module:jackson-module-kotlin:2.8.6'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.8.6'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.7'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.7'
compile 'com.fasterxml.jackson.module:jackson-module-kotlin:2.8.7'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.8.7'

testCompile 'junit:junit:4.+'
testCompile 'ch.qos.logback:logback-classic:1.0.13'
Expand Down

0 comments on commit c8ce15e

Please sign in to comment.