diff options
author | eikrwaq <waqas.ikram@ericsson.com> | 2018-03-21 15:31:05 +0000 |
---|---|---|
committer | eikrwaq <waqas.ikram@ericsson.com> | 2018-03-22 15:00:51 +0000 |
commit | 586e553d141e087566a6b064121910089cf52cff (patch) | |
tree | 73cac4eb73e083e567346488e1ac9b4c895b90df /site-manager/pom.xml | |
parent | 64627f345bfe5e5bd62524783594655dd8456ace (diff) |
Add junit and refactor code
Adding Junit tests in modules and refactoring code
Change-Id: I887f1b2371d9e3d4a4e2ce6e7e1f3c97a361f283
Issue-ID: POLICY-704
Signed-off-by: eikrwaq <waqas.ikram@ericsson.com>
Diffstat (limited to 'site-manager/pom.xml')
-rw-r--r-- | site-manager/pom.xml | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/site-manager/pom.xml b/site-manager/pom.xml index a30be04d..84c38b47 100644 --- a/site-manager/pom.xml +++ b/site-manager/pom.xml @@ -19,10 +19,9 @@ ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> <artifactId>site-manager</artifactId> @@ -76,7 +75,7 @@ <exclude>org.eclipse.persistence:javax.persistence</exclude> </excludes> </artifactSet> - </configuration> + </configuration> </execution> </executions> </plugin> @@ -124,5 +123,21 @@ <artifactId>commons-cli</artifactId> <version>1.3</version> </dependency> + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.eclipse.persistence</groupId> + <artifactId>eclipselink</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.onap.policy.common</groupId> + <artifactId>utils-test</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> </dependencies> </project> |