Skip to content

Commit

Permalink
changing the version and removing the commented code based on pr feed…
Browse files Browse the repository at this point in the history
…back.
  • Loading branch information
Aravinda Baliga B committed Jan 11, 2023
1 parent 5d19de3 commit f95c4e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
6 changes: 4 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
<version>0.9.1-SNAPSHOT</version>
<relativePath></relativePath>
</parent>

<version>0.9.2-SNAPSHOT</version>
<artifactId>openepcis-event-hash-generator</artifactId>
<name>openepcis-event-hash-generator</name>
<description>openEPCIS EPC GS1 Digital Link Translation Tools</description>
Expand Down Expand Up @@ -61,15 +63,15 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.version>0.9.2-SNAPSHOT</project.version>
</properties>

<dependencies>
<!-- EPC/Class identifiers format converter-->
<dependency>
<groupId>io.openepcis</groupId>
<artifactId>openepcis-epc-digitallink-translator</artifactId>
<version>0.9.2-SNAPSHOT</version>
<scope>compile</scope>
<version>${project.version}</version>
</dependency>

<!-- Mutiny dependency for Reactive Streams -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,12 +266,5 @@ public void bizTransactionOrderTest() throws IOException {
final Multi<Map<String, String>> eventHashIds =
EventHashGenerator.fromJson(jsonStream, "prehash", "sha3-512");
assertEquals(1, eventHashIds.subscribe().asStream().toList().size());
/*eventHashIds
.subscribe()
.with(
jsonHash ->
System.out.println(jsonHash.get("prehash") + "\n" + jsonHash.get("sha3-512")),
failure -> System.out.println("XML HashId Generation Failed with " + failure),
() -> System.out.println("Completed"));*/
}
}

0 comments on commit f95c4e3

Please sign in to comment.