summaryrefslogtreecommitdiffstats
path: root/aai-parent
diff options
context:
space:
mode:
authorJimmy Forsyth <jf2512@att.com>2019-12-12 11:13:56 -0500
committerJimmy Forsyth <jf2512@att.com>2019-12-12 11:13:58 -0500
commitff53f4a5e8bac4facc20d0a3dadcd7a50cbdcf58 (patch)
treeea0fac370b0cc3992cf011bfc39cff9122509794 /aai-parent
parentd530b59e0145f2f40c79e46b954cb6a2601cacd3 (diff)
Add some missing deps
Issue-ID: AAI-2738 Signed-off-by: Jimmy Forsyth <jf2512@att.com> Change-Id: I9a2f9715903f9fdd147b8f187efff1fb7b2f8cc5
Diffstat (limited to 'aai-parent')
-rw-r--r--aai-parent/pom.xml32
1 files changed, 29 insertions, 3 deletions
diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml
index eda7f546..a6b51665 100644
--- a/aai-parent/pom.xml
+++ b/aai-parent/pom.xml
@@ -53,6 +53,7 @@
<commons.configuration.version>1.10</commons.configuration.version>
<commons.io.version>2.6</commons.io.version>
<commons.lang.version>2.6</commons.lang.version>
+ <commons.lang3.version>3.9</commons.lang3.version>
<commons.text.version>1.8</commons.text.version>
<docker.fabric.version>0.31.0</docker.fabric.version>
<dmaap.client.version>1.1.9</dmaap.client.version>
@@ -64,6 +65,7 @@
<groovy.version>2.5.8</groovy.version>
<gson.version>2.8.6</gson.version>
<hamcrest.junit.version>2.0.0.0</hamcrest.junit.version>
+ <hamcrest.core.version>2.2</hamcrest.core.version>
<jackson.bom.version>2.10.1</jackson.bom.version>
<janusgraph.version>0.2.3</janusgraph.version>
<javatuples.version>1.2</javatuples.version>
@@ -90,6 +92,7 @@
<opencsv.version>3.1</opencsv.version>
<powermock.version>1.6.6</powermock.version>
<plexus.utils.version>3.1.1</plexus.utils.version>
+ <snakeyaml.version>1.25</snakeyaml.version>
<spring.boot.version>1.5.22.RELEASE</spring.boot.version>
<spring.web.version>4.3.25.RELEASE</spring.web.version>
<spring.jms.version>4.3.25.RELEASE</spring.jms.version>
@@ -174,6 +177,13 @@
</dependency>
<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>${commons.lang3.version}</version>
+ </dependency>
+
+
+ <dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
@@ -205,6 +215,18 @@
<dependency>
<groupId>org.hamcrest</groupId>
+ <artifactId>java-hamcrest</artifactId>
+ <version>${hamcrest.junit.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-core</artifactId>
+ <version>${hamcrest.core.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hamcrest</groupId>
<artifactId>hamcrest-junit</artifactId>
<version>${hamcrest.junit.version}</version>
</dependency>
@@ -562,8 +584,6 @@
<artifactId>jsonassert</artifactId>
<version>${jsonassert.version}</version>
<scope>test</scope>
-
-
</dependency>
<dependency>
@@ -571,7 +591,13 @@
<artifactId>plexus-utils</artifactId>
<version>${plexus.utils.version}</version>
</dependency>
-
+
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ <version>${snakeyaml.version}</version>
+ </dependency>
+
</dependencies>
</dependencyManagement>