File tree 5 files changed +8
-5
lines changed
main/java/com/ericsson/eiffel/remrem/semantics
java/com/ericsson/eiffel/remrem/semantics
5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.0.2
2
+ - Fixed issues when generating events because of false check for semantics purl or not.
3
+
1
4
## 2.0.1
2
5
- Parent group changed from Ericsson to eiffel-community.
3
6
Original file line number Diff line number Diff line change 7
7
<version >2.0.0</version >
8
8
</parent >
9
9
<artifactId >eiffel-remrem-semantics</artifactId >
10
- <version >2.0.1 </version >
10
+ <version >2.0.2 </version >
11
11
<packaging >jar</packaging >
12
12
<properties >
13
13
<eclipse .jgit.version>5.0.1.201806211838-r</eclipse .jgit.version>
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ public SemanticsService() {
145
145
public void readManifest () {
146
146
ManifestHandler manifastHandler = new ManifestHandler ();
147
147
purlSerializer = manifastHandler .readSemanticsSerializerFromManifest ();
148
- if (purlSerializer != null && ! purlSerializer .isEmpty ()) {
148
+ if (purlSerializer == null || purlSerializer .isEmpty ()) {
149
149
purlSerializerFlag = true ;
150
150
}
151
151
}
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public void setUp() throws Exception {
79
79
Attributes attributes = mock (Attributes .class );
80
80
manifestHandler = mock (ManifestHandler .class );
81
81
MockitoAnnotations .initMocks (this );
82
- when (attributes .getValue (anyString ())).thenReturn ("0.2.3 " );
82
+ when (attributes .getValue (anyString ())).thenReturn ("2. 0.2" );
83
83
SemanticsService .purlSerializer = semanticsSerializer ;
84
84
}
85
85
Original file line number Diff line number Diff line change 1
1
comment : This Manifest file is used for testing purpose
2
2
Manifest-Version : 1.0
3
- groupId : com.github.Ericsson
3
+ groupId : com.github.eiffel-community
4
4
remremVersionKey : semanticsVersion
5
5
artifactId : eiffel-remrem-semantics
6
6
isEndpointVersion : true
7
- semanticsVersion : 0.3.1
7
+ semanticsVersion : 2.0.2
8
8
You can’t perform that action at this time.
0 commit comments