summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorJorge Hernandez <jh1730@att.com>2017-08-15 19:12:25 -0500
committerJorge Hernandez <jh1730@att.com>2017-08-15 19:15:08 -0500
commitf9f086c4f7517602f7f8e862699618d79afddf58 (patch)
treed525e7b15d46c6f44f0eef2180d7fd735cc693cb /pom.xml
parent443205e307a5c84b0a4aa198bb66a6088e700adc (diff)
add persistence libraries in the installation base
to make db-enabled features to not worry about their packaging in the copy-dependencies plugin in the pom.xml Change-Id: Ie20a61978f75d4dbe82ac7aba5f6d259fb412f22 Issue-ID: POLICY-96 Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 08c27c3c..81d41c32 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,10 @@
<http.client.version>4.5</http.client.version>
<http.core.version>4.4.4</http.core.version>
<logback.version>1.2.3</logback.version>
+ <junit.version>4.12</junit.version>
+ <eclipselink.version>2.6.4</eclipselink.version>
+ <mariadb.jdbc.version>2.1.0</mariadb.jdbc.version>
+
<sonar.plugin.version>3.2</sonar.plugin.version>
<jacoco.plugin.version>0.7.9</jacoco.plugin.version>
@@ -167,6 +171,21 @@
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${junit.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.persistence</groupId>
+ <artifactId>eclipselink</artifactId>
+ <version>${eclipselink.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.mariadb.jdbc</groupId>
+ <artifactId>mariadb-java-client</artifactId>
+ <version>${mariadb.jdbc.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>