blob: 3f6ee7a0b4261aa559cd7d9aa4b1b3aa63e4d1a2 [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<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
AviZi280f8012017-06-09 02:39:56 +03005 <name>openecomp-sdc-vendor-license-manager</name>
6 <artifactId>openecomp-sdc-vendor-license-manager</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02007
8 <parent>
9 <artifactId>backend</artifactId>
10 <groupId>org.openecomp.sdc</groupId>
Michael Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020012 </parent>
13
shrikantawachar9a699252018-04-06 11:07:00 +053014
Michael Landof5f13c42017-02-19 12:35:04 +020015
16 <dependencies>
17 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020018 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>openecomp-sdc-vendor-license-core</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.mockito</groupId>
24 <artifactId>mockito-all</artifactId>
25 <scope>test</scope>
AviZi280f8012017-06-09 02:39:56 +030026 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020027 </dependency>
28 <dependency>
29 <groupId>org.testng</groupId>
30 <artifactId>testng</artifactId>
31 <scope>test</scope>
32 <version>6.8.5</version>
33 <exclusions>
34 <exclusion>
35 <artifactId>snakeyaml</artifactId>
36 <groupId>org.yaml</groupId>
37 </exclusion>
38 </exclusions>
39 </dependency>
40 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
43 <scope>test</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030044 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020045 </dependency>
46 <dependency>
47 <groupId>javax.el</groupId>
48 <artifactId>javax.el-api</artifactId>
49 <version>${javax.el-api.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.glassfish.web</groupId>
53 <artifactId>javax.el</artifactId>
AviZi280f8012017-06-09 02:39:56 +030054 <version>${javax.el.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020055 </dependency>
56 <dependency>
57 <groupId>org.codehaus.woodstox</groupId>
58 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030059 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020060 </dependency>
61 <dependency>
62 <groupId>org.openecomp.sdc</groupId>
63 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030064 <version>1.2.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020065 </dependency>
66 <dependency>
67 <groupId>com.fasterxml.jackson.dataformat</groupId>
68 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030069 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020070 </dependency>
71 <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
72 <dependency>
73 <groupId>commons-io</groupId>
74 <artifactId>commons-io</artifactId>
75 <version>${commons.io.version}</version>
76 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020077 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030078</project>