AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [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>openecomp-configuration-management-test</name> |
| 6 | <groupId>org.openecomp.sdc.common</groupId> |
| 7 | <artifactId>openecomp-configuration-management-test</artifactId> |
| 8 | |
| 9 | <parent> |
| 10 | <artifactId>openecomp-common-configuration-management</artifactId> |
| 11 | <groupId>org.openecomp.sdc.common</groupId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 12 | <version>1.2.0-SNAPSHOT</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 13 | <relativePath>..</relativePath> |
| 14 | </parent> |
| 15 | |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>org.openecomp.sdc.common</groupId> |
| 19 | <artifactId>openecomp-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> |