blob: 77e645eef25187a4787067a915fad22f0325858d [file] [log] [blame]
Michael Lando5b593492018-07-29 16:13:45 +03001<project xmlns="http://maven.apache.org/POM/4.0.0"
vempodecd2df2018-07-23 19:07:37 +03002 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">
amitjai42c920b2018-04-27 13:28:57 +05304
vempodecd2df2018-07-23 19:07:37 +03005 <modelVersion>4.0.0</modelVersion>
amitjai42c920b2018-04-27 13:28:57 +05306
vempodecd2df2018-07-23 19:07:37 +03007 <name>onap-configuration-management-test</name>
8 <artifactId>onap-configuration-management-test</artifactId>
amitjai42c920b2018-04-27 13:28:57 +05309
vempodecd2df2018-07-23 19:07:37 +030010 <parent>
11 <artifactId>onap-common-configuration-management</artifactId>
12 <groupId>org.onap.sdc.common</groupId>
13 <version>1.3.0-SNAPSHOT</version>
14 </parent>
amitjai42c920b2018-04-27 13:28:57 +053015
vempodecd2df2018-07-23 19:07:37 +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 <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>
amitjai42c920b2018-04-27 13:28:57 +053048</project>