diff options
author | Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com> | 2018-03-01 14:30:37 -0500 |
---|---|---|
committer | Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com> | 2018-03-01 14:30:37 -0500 |
commit | 168c54c6e774563910a3ed5a7480ea63cd3fe572 (patch) | |
tree | 3c47245c87133f8260ed55e99b1ab145147c6be8 /pom.xml | |
parent | efff2b72360e33b92b8ae32f76b0c8e6082b7842 (diff) |
Sonar and CLM fixes and Unit test
Added zookeeper Server Unit Test back and fixed issues
were IP 10.0.0.2 was carried
over form another unit test.
Change-Id: I9222125decb9b075b7351b3a97f225138799de57
Issue-ID: MUSIC-40
Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com>
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -199,12 +199,29 @@ <artifactId>cassandra-driver-core</artifactId> <version>${cassandra.version}</version> </dependency> + <dependency> <groupId>org.cassandraunit</groupId> <artifactId>cassandra-unit</artifactId> <version>3.3.0.2</version> </dependency> <dependency> + <groupId>org.apache.curator</groupId> + <artifactId>curator-test</artifactId> + <version>2.3.0</version> + <exclusions> + <exclusion> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>${zookeeper.version}</version> |