blob: 64ed8a84b11be9c4801321ab394e01692f97e237 [file] [log] [blame]
amitjai42c920b2018-04-27 13:28:57 +05301<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <name>onap-configuration-management-test</name>
amitjai42c920b2018-04-27 13:28:57 +05306 <artifactId>onap-configuration-management-test</artifactId>
7
8 <parent>
9 <artifactId>onap-common-configuration-management</artifactId>
10 <groupId>org.onap.sdc.common</groupId>
Michael Landod8a0dea2018-06-02 19:23:27 +030011 <version>1.3.0-SNAPSHOT</version>
amitjai42c920b2018-04-27 13:28:57 +053012 <relativePath>..</relativePath>
13 </parent>
14
15 <dependencies>
16 <dependency>
vempo68945dd2018-07-08 11:29:54 +030017 <groupId>org.onap.sdc.common</groupId>
18 <artifactId>onap-configuration-management-core</artifactId>
19 <version>${project.version}</version>
20 </dependency>
amitjai42c920b2018-04-27 13:28:57 +053021 <dependency>
22 <groupId>junit</groupId>
23 <artifactId>junit</artifactId>
vempo68945dd2018-07-08 11:29:54 +030024 <version>${junit.version}</version>
25 <scope>test</scope>
amitjai42c920b2018-04-27 13:28:57 +053026 </dependency>
27 </dependencies>
28
29 <build>
30 <plugins>
amitjai42c920b2018-04-27 13:28:57 +053031 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-surefire-plugin</artifactId>
34 <version>${mvn.surefire.version}</version>
35 <configuration>
36 <skipTests>true</skipTests>
37 <systemPropertyVariables>
38 <config.location>${project.basedir}/src/test/resources</config.location>
39 <node.config.location>${user.home}/TestResources</node.config.location>
40 </systemPropertyVariables>
41 <includes>
42 <include>**/TestCMSuite.java</include>
43 </includes>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>