Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [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 | |
| 6 | <parent> |
| 7 | <artifactId>backend</artifactId> |
| 8 | <groupId>org.openecomp.sdc</groupId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | |
| 12 | <artifactId>openecomp-sdc-vendor-license-manager</artifactId> |
| 13 | <name>openecomp-sdc-vendor-license-manager</name> |
| 14 | |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>com.google.code.gson</groupId> |
| 18 | <artifactId>gson</artifactId> |
| 19 | <version>2.3.1</version> |
| 20 | <scope>test</scope> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>org.yaml</groupId> |
| 24 | <artifactId>snakeyaml</artifactId> |
| 25 | <version>1.14</version> |
| 26 | <scope>test</scope> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.openecomp.sdc</groupId> |
| 30 | <artifactId>openecomp-sdc-vendor-license-core</artifactId> |
| 31 | <version>${project.version}</version> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.mockito</groupId> |
| 35 | <artifactId>mockito-all</artifactId> |
| 36 | <scope>test</scope> |
| 37 | <version>1.10.19</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.testng</groupId> |
| 41 | <artifactId>testng</artifactId> |
| 42 | <scope>test</scope> |
| 43 | <version>6.8.5</version> |
| 44 | <exclusions> |
| 45 | <exclusion> |
| 46 | <artifactId>snakeyaml</artifactId> |
| 47 | <groupId>org.yaml</groupId> |
| 48 | </exclusion> |
| 49 | </exclusions> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>junit</groupId> |
| 53 | <artifactId>junit</artifactId> |
| 54 | <scope>test</scope> |
| 55 | <version>RELEASE</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>javax.el</groupId> |
| 59 | <artifactId>javax.el-api</artifactId> |
| 60 | <version>${javax.el-api.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.glassfish.web</groupId> |
| 64 | <artifactId>javax.el</artifactId> |
| 65 | <version>2.2.4</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.codehaus.woodstox</groupId> |
| 69 | <artifactId>woodstox-core-asl</artifactId> |
| 70 | <version>4.4.1</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.openecomp.sdc</groupId> |
| 74 | <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 79 | <artifactId>jackson-dataformat-xml</artifactId> |
| 80 | <version>2.7.4</version> |
| 81 | </dependency> |
| 82 | <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
| 83 | <dependency> |
| 84 | <groupId>commons-io</groupId> |
| 85 | <artifactId>commons-io</artifactId> |
| 86 | <version>${commons.io.version}</version> |
| 87 | </dependency> |
| 88 | |
| 89 | </dependencies> |
| 90 | |
| 91 | <build> |
| 92 | <plugins> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.maven.plugins</groupId> |
| 95 | <artifactId>maven-surefire-plugin</artifactId> |
| 96 | <version>2.19.1</version> |
| 97 | <configuration> |
| 98 | <skipTests>true</skipTests> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
| 103 | </project> |