diff --git a/README.md b/README.md index fe11aa1..49c8947 100644 --- a/README.md +++ b/README.md @@ -46,16 +46,12 @@ Install the dependency from Maven Central or JCenter with: ``` -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 diff --git a/build.gradle b/build.gradle index c625daa..11dc0b9 100644 --- a/build.gradle +++ b/build.gradle @@ -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 diff --git a/rewrite-core/build.gradle b/rewrite-core/build.gradle index f7e9c49..1741dc2 100644 --- a/rewrite-core/build.gradle +++ b/rewrite-core/build.gradle @@ -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' diff --git a/rewrite-jackson/build.gradle b/rewrite-jackson/build.gradle index ece916c..8c61d2e 100644 --- a/rewrite-jackson/build.gradle +++ b/rewrite-jackson/build.gradle @@ -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'