diff options
author | Jorge Hernandez <jh1730@att.com> | 2017-08-15 19:12:25 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2017-08-15 19:15:08 -0500 |
commit | f9f086c4f7517602f7f8e862699618d79afddf58 (patch) | |
tree | d525e7b15d46c6f44f0eef2180d7fd735cc693cb /pom.xml | |
parent | 443205e307a5c84b0a4aa198bb66a6088e700adc (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.xml | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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> |