diff --git a/.travis.yml b/.travis.yml index c21b18b..0a37ef5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ jdk: - oraclejdk8 services: - mongodb +- rabbitmq sudo: required branches: only: diff --git a/build.gradle b/build.gradle index d8e5650..8d68441 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - springBootVersion = '1.5.10.RELEASE' + springBootVersion = '1.5.12.RELEASE' } repositories { mavenCentral() @@ -14,7 +14,7 @@ buildscript { plugins { id 'java' id 'io.franzbecker.gradle-lombok' version '1.8' - id 'org.springframework.boot' version '1.5.10.RELEASE' + id 'org.springframework.boot' version '1.5.12.RELEASE' // code quality id "jacoco" @@ -88,7 +88,7 @@ dependencies { //compile('eu.h2020.symbiote:SymbIoTeLibraries:5.+') { changing = true } - compile('com.github.symbiote-h2020:SymbIoTeLibraries:5.+') { changing = true } + compile('com.github.symbiote-h2020:SymbIoTeLibraries:5.11.+') { changing = true } compileOnly('org.projectlombok:lombok') diff --git a/src/integration-test/java/eu/h2020/symbiote/rapplugin/EmbeddedRabbitFixture.java b/src/integration-test/java/eu/h2020/symbiote/rapplugin/EmbeddedRabbitFixture.java index cdf9159..ddff17a 100644 --- a/src/integration-test/java/eu/h2020/symbiote/rapplugin/EmbeddedRabbitFixture.java +++ b/src/integration-test/java/eu/h2020/symbiote/rapplugin/EmbeddedRabbitFixture.java @@ -17,7 +17,7 @@ public class EmbeddedRabbitFixture { private static final int RABBIT_STARTING_TIMEOUT = 20_000; // turn to false if you want to start RabbitMQ independently of tests. - private static final boolean RUN_EMBEDDED = true; + private static final boolean RUN_EMBEDDED = false; protected static EmbeddedRabbitMq rabbitMq;