diff options
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> |