Removed forced dependencies in common
[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
5     <modelVersion>4.0.0</modelVersion>
6
7     <name>onap-configuration-management-test</name>
8     <artifactId>onap-configuration-management-test</artifactId>
9
10     <parent>
11         <artifactId>onap-common-configuration-management</artifactId>
12         <groupId>org.onap.sdc.common</groupId>
13         <version>1.3.0-SNAPSHOT</version>
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             <scope>test</scope>
26         </dependency>
27     </dependencies>
28
29     <build>
30         <plugins>
31             <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>