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 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 5 | <name>openecomp-sdc-vendor-license-manager</name> |
| 6 | <artifactId>openecomp-sdc-vendor-license-manager</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 7 | |
| 8 | <parent> |
| 9 | <artifactId>backend</artifactId> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
Michael Lando | 04a5bef | 2018-10-23 01:32:15 +0300 | [diff] [blame] | 11 | <version>1.3.1-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 14 | <dependencies> |
| 15 | <dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 16 | <groupId>org.openecomp.sdc</groupId> |
| 17 | <artifactId>openecomp-sdc-vendor-license-core</artifactId> |
| 18 | <version>${project.version}</version> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>org.mockito</groupId> |
| 22 | <artifactId>mockito-all</artifactId> |
| 23 | <scope>test</scope> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 24 | <version>${mockito.all.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>org.testng</groupId> |
| 28 | <artifactId>testng</artifactId> |
| 29 | <scope>test</scope> |
avigaffa | aae39fb | 2018-06-18 19:56:59 +0300 | [diff] [blame] | 30 | <version>${testng.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 31 | <exclusions> |
| 32 | <exclusion> |
| 33 | <artifactId>snakeyaml</artifactId> |
| 34 | <groupId>org.yaml</groupId> |
| 35 | </exclusion> |
| 36 | </exclusions> |
| 37 | </dependency> |
| 38 | <dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 39 | <groupId>javax.el</groupId> |
| 40 | <artifactId>javax.el-api</artifactId> |
| 41 | <version>${javax.el-api.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.glassfish.web</groupId> |
| 45 | <artifactId>javax.el</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 46 | <version>${javax.el.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.codehaus.woodstox</groupId> |
| 50 | <artifactId>woodstox-core-asl</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 51 | <version>${woodstox.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.openecomp.sdc</groupId> |
| 55 | <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId> |
vempo | e993087 | 2018-07-15 16:53:59 +0300 | [diff] [blame] | 56 | <version>${project.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 60 | <artifactId>jackson-dataformat-xml</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 61 | <version>${jackson.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 62 | </dependency> |
| 63 | <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
| 64 | <dependency> |
| 65 | <groupId>commons-io</groupId> |
| 66 | <artifactId>commons-io</artifactId> |
| 67 | <version>${commons.io.version}</version> |
| 68 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 69 | </dependencies> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 70 | </project> |