re base code
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-test / pom.xml
1 <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>
5
6         <name>onap-configuration-management-test</name>
7         <artifactId>onap-configuration-management-test</artifactId>
8
9         <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>
15
16         <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>
29
30         <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>
49 </project>