blob: 85b34a187eff6d0a4d83ee3386c5460595de6661 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<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-sdc-vendor-license-manager</name>
6 <artifactId>openecomp-sdc-vendor-license-manager</artifactId>
7
8 <parent>
9 <artifactId>backend</artifactId>
10 <groupId>org.openecomp.sdc</groupId>
11 <version>1.0-SNAPSHOT</version>
12 </parent>
13
14 <dependencies>
15 <dependency>
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>
24 <version>1.10.19</version>
25 </dependency>
26 <dependency>
27 <groupId>org.testng</groupId>
28 <artifactId>testng</artifactId>
29 <scope>test</scope>
30 <version>6.8.5</version>
31 <exclusions>
32 <exclusion>
33 <artifactId>snakeyaml</artifactId>
34 <groupId>org.yaml</groupId>
35 </exclusion>
36 </exclusions>
37 </dependency>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
41 <scope>test</scope>
42 <version>4.11</version>
43 </dependency>
44 <dependency>
45 <groupId>javax.el</groupId>
46 <artifactId>javax.el-api</artifactId>
47 <version>${javax.el-api.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.glassfish.web</groupId>
51 <artifactId>javax.el</artifactId>
52 <version>2.2.4</version>
53 </dependency>
54 <dependency>
55 <groupId>org.codehaus.woodstox</groupId>
56 <artifactId>woodstox-core-asl</artifactId>
57 <version>4.4.1</version>
58 </dependency>
59 <dependency>
60 <groupId>org.openecomp.sdc</groupId>
61 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
62 <version>1.0-SNAPSHOT</version>
63 </dependency>
64 <dependency>
65 <groupId>com.fasterxml.jackson.dataformat</groupId>
66 <artifactId>jackson-dataformat-xml</artifactId>
67 <version>2.7.4</version>
68 </dependency>
69 <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
70 <dependency>
71 <groupId>commons-io</groupId>
72 <artifactId>commons-io</artifactId>
73 <version>${commons.io.version}</version>
74 </dependency>
75
76 </dependencies>
77</project>