Skip to content

Commit 1079e43

Browse files
Merge pull request #23 from evasiba-ericsson/master
change test framework dependency
2 parents d36beff + 9e46ab9 commit 1079e43

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jar {
2424
baseName = 'eiffel-remrem-semantics'
2525
// If this version is updated please update it in Event.java
2626
// com.ericsson.eiffel.remrem.semantics.events
27-
version = '0.1.4'
27+
version = '0.1.5'
2828
manifest {
2929
attributes('Semantics-Version': version)
3030
}
3131
}
3232

3333
shadowJar {
3434
baseName = 'eiffel-remrem-semantics'
35-
version = '0.1.4'
35+
version = '0.1.5'
3636
classifier = ''
3737
}
3838

@@ -65,13 +65,17 @@ install.dependsOn shadowJar
6565
// runtime.exclude group: 'org.slf4j', module: 'slf4j-api'
6666
//}
6767

68+
ext {
69+
sprintBootVersion = "1.4.1.RELEASE"
70+
}
71+
6872
dependencies {
6973
compile 'org.springframework:spring-context:4.3.3.RELEASE'
7074
compile 'com.github.Ericsson:eiffel-remrem-shared:0.1.4'
7175
compile 'com.github.fge:json-schema-validator:2.2.6'
7276
compile 'org.slf4j:slf4j-api:1.7.18'
7377
compile group: 'com.google.code.gson', name: 'gson', version: '1.7.2'
7478
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.8'
75-
compile 'org.mockito:mockito-core:2.1.0'
7679
testCompile 'junit:junit:4.12'
80+
testCompile("org.springframework.boot:spring-boot-starter-test:$sprintBootVersion")
7781
}

src/main/java/com/ericsson/eiffel/remrem/semantics/events/Event.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
public abstract class Event {
1616
public Meta meta;
17-
public static String version = "0.1.4";
17+
public static String version = "0.1.5";
1818

1919
public void generateMeta(String msgType, JsonObject msgNodes) {
2020
meta = new Gson().fromJson(msgNodes.get("meta"), Meta.class);

0 commit comments

Comments
 (0)