Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 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"> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 4 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 5 | <modelVersion>4.0.0</modelVersion> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 6 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 7 | <name>onap-configuration-management-test</name> |
| 8 | <artifactId>onap-configuration-management-test</artifactId> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 9 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 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> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 15 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 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> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 48 | </project> |