Skip to content

Commit

Permalink
- add version confirmation
Browse files Browse the repository at this point in the history
- retrigger
  • Loading branch information
tkobayas committed Nov 27, 2023
1 parent b32f480 commit 776b33f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/kogito-api/src/test/java/org/kie/kogito/KogitoGAVTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ class KogitoGAVTest {

public static final ObjectMapper MAPPER = new ObjectMapper();

@Test
void versionConfirmationTest() {
System.out.println("java.version : " + System.getProperty("java.version"));
System.out.println("java.runtime.version : " + System.getProperty("java.runtime.version"));
System.out.println("java.specification.version : " + System.getProperty("java.specification.version"));
System.out.println("java.vm.version : " + System.getProperty("java.vm.version"));
System.out.println("java.vm.specification.version : " + System.getProperty("java.vm.specification.version"));
System.out.println("java.home : " + System.getProperty("java.home"));

assertThat(true).isTrue();
}

@Test
void serializationTest() throws JsonProcessingException {
KogitoGAV originalGav = new KogitoGAV("group", "artifact", "version");
Expand Down

0 comments on commit 776b33f

Please sign in to comment.