aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTschaen, Brendan <ctschaen@att.com>2018-11-06 12:17:37 -0500
committerTschaen, Brendan <ctschaen@att.com>2018-11-06 12:18:18 -0500
commit4d003e03d87d282389efc524fd26f7c63b7ad0d6 (patch)
tree79c20c6defe1101bd9aef697b244d1d3b107b24d
parent534ba9d7fedd4400eb28f3861a28539ec754b717 (diff)
Jar only version for now
Change-Id: I54a94e30da52ad9a01df13d16bbf790fb1245464 Issue-ID: MUSIC-149 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
-rwxr-xr-xpom.xml2
-rw-r--r--src/test/java/org/onap/music/unittests/TestMusicCoreIntegration.java4
2 files changed, 1 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 55fee8b9..01fcf984 100755
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.onap.music</groupId>
<artifactId>dev-MUSIC-cassandra</artifactId>
- <packaging>war</packaging>
+ <packaging>jar</packaging>
<version>3.2.0-SNAPSHOT</version>
<description>
This is the MUSIC REST interface, packaged as a war file.
diff --git a/src/test/java/org/onap/music/unittests/TestMusicCoreIntegration.java b/src/test/java/org/onap/music/unittests/TestMusicCoreIntegration.java
index 59417f2b..9b4fc229 100644
--- a/src/test/java/org/onap/music/unittests/TestMusicCoreIntegration.java
+++ b/src/test/java/org/onap/music/unittests/TestMusicCoreIntegration.java
@@ -46,7 +46,6 @@ import com.datastax.driver.core.Row;
@Ignore
public class TestMusicCoreIntegration {
- static TestingServer zkServer;
static PreparedQueryObject testObject;
static String lockId = null;
static String lockName = "ks1.tb1.pk1";
@@ -59,7 +58,6 @@ public class TestMusicCoreIntegration {
} catch (Exception e) {
e.printStackTrace();
}
- System.out.println("####Port:" + zkServer.getPort());
}
@AfterClass
@@ -70,8 +68,6 @@ public class TestMusicCoreIntegration {
MusicCore.eventualPut(testObject);
MusicCore.deleteLock(lockName);
MusicCore.mDstoreHandle.close();
- zkServer.stop();
-
}
@Test