Skip to content

Commit b41b4cf

Browse files
committed
Update current version to 7.15.0.Final
Persistence marshaller refactor. Signed-off-by: fjtirado <ftirados@redhat.com>
1 parent 22877a1 commit b41b4cf

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
release:
2-
current-version: 7.14.1.Final
2+
current-version: 7.15.0.Final
33
next-version: 8.0.0-SNAPSHOT

experimental/model/src/test/java/io/serverlessworkflow/impl/model/func/JavaModelSerializationTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@
2323
import io.serverlessworkflow.impl.marshaller.WorkflowOutputBuffer;
2424
import java.io.ByteArrayInputStream;
2525
import java.io.ByteArrayOutputStream;
26-
import java.io.IOException;
2726
import org.junit.jupiter.api.Test;
2827

2928
class JavaModelSerializationTest {
3029

3130
@Test
32-
void testSerializableJavaModel() throws IOException {
31+
void testSerializableJavaModel() {
3332
testMarshallUnMarshall(
3433
new JavaModel(new Person("Pepe Gotera", 32, new Address("Rue del Percebe", 13))));
3534
}

impl/model/src/test/java/io/serverlessworkflow/impl/model/jackson/JacksonModelSerializationTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,17 @@
2424
import io.serverlessworkflow.impl.marshaller.WorkflowOutputBuffer;
2525
import java.io.ByteArrayInputStream;
2626
import java.io.ByteArrayOutputStream;
27-
import java.io.IOException;
2827
import org.junit.jupiter.api.Test;
2928

3029
class JacksonModelSerializationTest {
3130

3231
@Test
33-
void testObject() throws IOException {
32+
void testObject() {
3433
testMarshallUnMarshall(new Employee("Mortadelo", "TIA"));
3534
}
3635

3736
@Test
38-
void testModel() throws IOException {
37+
void testModel() {
3938
testMarshallUnMarshall(
4039
new JacksonModel(JsonUtils.mapper().createObjectNode().put("Mortadelo", "TIA")));
4140
}

0 commit comments

Comments
 (0)