Skip to content

Commit

Permalink
Merge pull request #2 from symbiote-h2020/develop
Browse files Browse the repository at this point in the history
fix dependency to SL 5.11.+
  • Loading branch information
MarioKusek authored May 14, 2018
2 parents 9906c25 + a07a6ab commit 4dc9f1a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jdk:
- oraclejdk8
services:
- mongodb
- rabbitmq
sudo: required
branches:
only:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
springBootVersion = '1.5.10.RELEASE'
springBootVersion = '1.5.12.RELEASE'
}
repositories {
mavenCentral()
Expand All @@ -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"
Expand Down Expand Up @@ -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')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 4dc9f1a

Please sign in to comment.