From b9b5eeb46f75705e44ece77b86afa4e246a89efb Mon Sep 17 00:00:00 2001 From: Enric Sala Date: Sat, 16 Apr 2016 22:56:09 +0200 Subject: [PATCH] Upgrade version of spring boot, rxjava and lombok --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index add49d6..df84947 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - springBootVersion = '1.3.1.RELEASE' + springBootVersion = '1.3.3.RELEASE' } repositories { mavenCentral() @@ -37,8 +37,8 @@ dependencies { compile('org.springframework.boot:spring-boot-starter-security') compile('org.springframework.boot:spring-boot-starter-actuator') compile('org.springframework.boot:spring-boot-devtools') - compile 'io.reactivex:rxjava:1.1.0' - compile('org.projectlombok:lombok:1.16.6') + compile 'io.reactivex:rxjava:1.1.3' + compile('org.projectlombok:lombok:1.16.8') testCompile('org.springframework.boot:spring-boot-starter-test') }