Skip to content

Commit

Permalink
Upgrade to Kotlibn 1.1.4-eap-69
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Aug 5, 2017
1 parent 2d6ac07 commit 3f97601
Show file tree
Hide file tree
Showing 2 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 @@ -2,7 +2,7 @@ This project is designed to demonstrate Spring Framework 5 Kotlin support and Fu
- Programmatic Bootstrap of Spring WebFlux application (not needed when Spring Boot is used)
- [Spring Kotlin support](https://spring.io/blog/2017/01/04/introducing-kotlin-support-in-spring-framework-5-0)
- Reactor Kotlin support
- Null-safety of Spring and Reactor API
- Null-safety of Spring and Reactor API (make sure to use Kotlin 1.1.4-eap-69+)
- WebFlux Reactive web server and client
- [Functional bean definition with Kotlin DSL](https://github.com/sdeleuze/spring-kotlin-micro/blob/master/src/main/kotlin/micro/Beans.kt) (no reflection, no CGLIB proxies involved)
- [WebFlux functional routing declaration with Kotlin DSL](https://github.com/sdeleuze/spring-kotlin-micro/blob/master/src/main/kotlin/micro/web/Routes.kt)
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
}

dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.4-eap-54")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.4-eap-69")
classpath("com.github.jengelman.gradle.plugins:shadow:2.0.1")
classpath("org.junit.platform:junit-platform-gradle-plugin:1.0.0-RC2")
}
Expand Down Expand Up @@ -40,8 +40,8 @@ tasks {
}

dependencies {
compile("org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.4-eap-54")
compile("org.jetbrains.kotlin:kotlin-reflect:1.1.4-eap-54")
compile("org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.4-eap-69")
compile("org.jetbrains.kotlin:kotlin-reflect:1.1.4-eap-69")

compile("org.springframework:spring-webflux:5.0.0.BUILD-SNAPSHOT")
compile("org.springframework:spring-context:5.0.0.BUILD-SNAPSHOT")
Expand Down

0 comments on commit 3f97601

Please sign in to comment.