amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 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> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 6 | <artifactId>onap-configuration-management-test</artifactId> |
| 7 | |
| 8 | <parent> |
| 9 | <artifactId>onap-common-configuration-management</artifactId> |
| 10 | <groupId>org.onap.sdc.common</groupId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 11 | <version>1.3.0-SNAPSHOT</version> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 12 | <relativePath>..</relativePath> |
| 13 | </parent> |
| 14 | |
| 15 | <dependencies> |
| 16 | <dependency> |
vempo | 68945dd | 2018-07-08 11:29:54 +0300 | [diff] [blame] | 17 | <groupId>org.onap.sdc.common</groupId> |
| 18 | <artifactId>onap-configuration-management-core</artifactId> |
| 19 | <version>${project.version}</version> |
| 20 | </dependency> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 21 | <dependency> |
| 22 | <groupId>junit</groupId> |
| 23 | <artifactId>junit</artifactId> |
vempo | 68945dd | 2018-07-08 11:29:54 +0300 | [diff] [blame] | 24 | <version>${junit.version}</version> |
| 25 | <scope>test</scope> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 26 | </dependency> |
| 27 | </dependencies> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 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> |