Jar only version for now 77/71977/1
authorTschaen, Brendan <ctschaen@att.com>
Tue, 6 Nov 2018 17:17:37 +0000 (12:17 -0500)
committerTschaen, Brendan <ctschaen@att.com>
Tue, 6 Nov 2018 17:18:18 +0000 (12:18 -0500)
Change-Id: I54a94e30da52ad9a01df13d16bbf790fb1245464
Issue-ID: MUSIC-149
Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
pom.xml
src/test/java/org/onap/music/unittests/TestMusicCoreIntegration.java

diff --git a/pom.xml b/pom.xml
index 55fee8b..01fcf98 100755 (executable)
--- 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.
index 59417f2..9b4fc22 100644 (file)
@@ -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