File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
main/java/com/ericsson/eiffel/remrem/semantics
java/com/ericsson/eiffel/remrem/semantics Expand file tree Collapse file tree 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+
14## 2.0.1
25- Parent group changed from Ericsson to eiffel-community.
36
Original file line number Diff line number Diff line change 77 <version >2.0.0</version >
88 </parent >
99 <artifactId >eiffel-remrem-semantics</artifactId >
10- <version >2.0.1 </version >
10+ <version >2.0.2 </version >
1111 <packaging >jar</packaging >
1212 <properties >
1313 <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() {
145145 public void readManifest () {
146146 ManifestHandler manifastHandler = new ManifestHandler ();
147147 purlSerializer = manifastHandler .readSemanticsSerializerFromManifest ();
148- if (purlSerializer != null && ! purlSerializer .isEmpty ()) {
148+ if (purlSerializer == null || purlSerializer .isEmpty ()) {
149149 purlSerializerFlag = true ;
150150 }
151151 }
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public void setUp() throws Exception {
7979 Attributes attributes = mock (Attributes .class );
8080 manifestHandler = mock (ManifestHandler .class );
8181 MockitoAnnotations .initMocks (this );
82- when (attributes .getValue (anyString ())).thenReturn ("0.2.3 " );
82+ when (attributes .getValue (anyString ())).thenReturn ("2. 0.2" );
8383 SemanticsService .purlSerializer = semanticsSerializer ;
8484 }
8585
Original file line number Diff line number Diff line change 11comment : This Manifest file is used for testing purpose
22Manifest-Version : 1.0
3- groupId : com.github.Ericsson
3+ groupId : com.github.eiffel-community
44remremVersionKey : semanticsVersion
55artifactId : eiffel-remrem-semantics
66isEndpointVersion : true
7- semanticsVersion : 0.3.1
7+ semanticsVersion : 2.0.2
88
You can’t perform that action at this time.
0 commit comments