blob: 700513ea5d37d53aff23ae7f1a7073bf7e1d1159 [file] [log] [blame]
Michael Lando5b593492018-07-29 16:13:45 +03001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
amitjai42c920b2018-04-27 13:28:57 +05305
Michael Lando5b593492018-07-29 16:13:45 +03006 <name>onap-configuration-management-test</name>
7 <artifactId>onap-configuration-management-test</artifactId>
amitjai42c920b2018-04-27 13:28:57 +05308
Michael Lando5b593492018-07-29 16:13:45 +03009 <parent>
10 <artifactId>onap-common-configuration-management</artifactId>
11 <groupId>org.onap.sdc.common</groupId>
12 <version>1.3.0-SNAPSHOT</version>
13 <relativePath>..</relativePath>
14 </parent>
amitjai42c920b2018-04-27 13:28:57 +053015
Michael Lando5b593492018-07-29 16:13:45 +030016 <dependencies>
17 <dependency>
18 <groupId>org.onap.sdc.common</groupId>
19 <artifactId>onap-configuration-management-core</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>junit</groupId>
24 <artifactId>junit</artifactId>
25 <version>${junit.version}</version>
26 <scope>test</scope>
27 </dependency>
28 </dependencies>
amitjai42c920b2018-04-27 13:28:57 +053029
Michael Lando5b593492018-07-29 16:13:45 +030030 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-surefire-plugin</artifactId>
35 <version>${mvn.surefire.version}</version>
36 <configuration>
37 <skipTests>true</skipTests>
38 <systemPropertyVariables>
39 <config.location>${project.basedir}/src/test/resources</config.location>
40 <node.config.location>${user.home}/TestResources</node.config.location>
41 </systemPropertyVariables>
42 <includes>
43 <include>**/TestCMSuite.java</include>
44 </includes>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
amitjai42c920b2018-04-27 13:28:57 +053049</project>