File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
src/main/java/com/ericsson/eiffel/remrem/semantics/events Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff 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
3333shadowJar {
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+
6872dependencies {
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}
Original file line number Diff line number Diff line change 1414
1515public 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 );
You can’t perform that action at this time.
0 commit comments