update sdc version
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-test / pom.xml
1 <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>
6     <groupId>org.onap.sdc.common</groupId>
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
23         <dependency>
24             <groupId>junit</groupId>
25             <artifactId>junit</artifactId>
26             <version>4.11</version>
27         </dependency>
28     </dependencies>
29
30     <build>
31         <plugins>
32            <!-- <plugin>
33                 <groupId>org.apache.maven.plugins</groupId>
34                 <artifactId>maven-compiler-plugin</artifactId>
35                 <configuration>
36                     <source>1.8</source>
37                     <target>1.8</target>
38                 </configuration>
39             </plugin-->
40             <!--<plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-surefire-plugin</artifactId>
43                 <version>${mvn.surefire.version}</version>
44             </plugin>-->
45             <!-- any other plugins -->
46            <!-- <plugin>
47                 <groupId>org.apache.maven.plugins</groupId>
48                 <artifactId>maven-shade-plugin</artifactId>
49                 <version>${mvn.shade.version}</version>
50                 <executions>
51                     <execution>
52                         <phase>package</phase>
53                         <goals>
54                             <goal>shade</goal>
55                         </goals>
56                         <configuration>
57                             <artifactSet>
58                                 <excludes>
59                                     <exclude>com.google.guava:*</exclude>
60                                 </excludes>
61                             </artifactSet>
62                         </configuration>
63                     </execution>
64                 </executions>
65             </plugin>-->
66
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-surefire-plugin</artifactId>
70                 <version>${mvn.surefire.version}</version>
71                 <configuration>
72                     <skipTests>true</skipTests>
73                     <systemPropertyVariables>
74                         <config.location>${project.basedir}/src/test/resources</config.location>
75                         <node.config.location>${user.home}/TestResources</node.config.location>
76                     </systemPropertyVariables>
77                     <includes>
78                         <include>**/TestCMSuite.java</include>
79                     </includes>
80                 </configuration>
81             </plugin>
82         </plugins>
83     </build>
84 </project>