From: Jimmy Forsyth Date: Wed, 14 Aug 2019 15:58:45 +0000 (-0400) Subject: Upversion gizmo on elalto X-Git-Tag: 1.5.1~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F93528%2F3;p=aai%2Fgizmo.git Upversion gizmo on elalto Issue-ID: AAI-2579 Signed-off-by: Jimmy Forsyth Change-Id: I47659681d25d8d5a4715ae96d17fc85cdf3f26dd --- diff --git a/pom.xml b/pom.xml index e39acd3..e27155a 100644 --- a/pom.xml +++ b/pom.xml @@ -31,15 +31,15 @@ limitations under the License. org.onap.aai.gizmo gizmo - 1.5.0-SNAPSHOT + 1.5.1-SNAPSHOT aai-gizmo ${basedir}/target 1.4.1 - 1.5.0 - 1.5.1 - 1.5.1 + 1.5.1 + 1.5.3 + 1.5.3 1.5.0 @@ -53,7 +53,7 @@ limitations under the License. org.springframework.boot spring-boot-dependencies - 1.5.19.RELEASE + 1.5.21.RELEASE pom import diff --git a/src/test/java/org/onap/crud/event/response/GraphEventResponseHandlerTest.java b/src/test/java/org/onap/crud/event/response/GraphEventResponseHandlerTest.java index b28ba3a..5f9194f 100644 --- a/src/test/java/org/onap/crud/event/response/GraphEventResponseHandlerTest.java +++ b/src/test/java/org/onap/crud/event/response/GraphEventResponseHandlerTest.java @@ -19,9 +19,8 @@ * ============LICENSE_END========================================================= */ package org.onap.crud.event.response; - import static org.assertj.core.api.Assertions.assertThat; -import org.junit.BeforeClass; +import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; @@ -41,18 +40,22 @@ import org.onap.crud.OXMModelLoaderSetup; @RunWith(MockitoJUnitRunner.Silent.class) public class GraphEventResponseHandlerTest extends OXMModelLoaderSetup { + private static boolean setUpIsNotDone = true; @Rule public ExpectedException expectedException = ExpectedException.none(); - @BeforeClass - public static void setUpBeforeClass() throws Exception { - System.setProperty("CONFIG_HOME", "src/test/resources"); - System.setProperty("AJSC_HOME", "."); - System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local"); - - OxmModelLoader.loadModels(); - EdgeRulesLoader.loadModels(); + @Before + public void setUpOnce() throws Exception { + if (setUpIsNotDone) { + System.setProperty("CONFIG_HOME", "src/test/resources"); + System.setProperty("AJSC_HOME", "."); + System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local"); + + OxmModelLoader.loadModels(); + EdgeRulesLoader.loadModels(); + setUpIsNotDone = false; + } } @Test diff --git a/version.properties b/version.properties index 99af342..f78f30b 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1 minor=5 -patch=0 +patch=1 base_version=${major}.${minor}.${patch}