blob: 4d70a8bd9559adb11df5f5a6dfc6964318cadfa5 [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
AviZi280f8012017-06-09 02:39:56 +030014 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-surefire-plugin</artifactId>
19 <version>2.12.4</version>
20 <configuration>
21 <skipTests>true</skipTests>
22 </configuration>
23 </plugin>
24 </plugins>
25 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020026
27 <dependencies>
28 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020029 <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>
AviZi280f8012017-06-09 02:39:56 +030037 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020038 </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>
Avi Zivb8e2faf2017-07-18 19:45:38 +030055 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020056 </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>
AviZi280f8012017-06-09 02:39:56 +030065 <version>${javax.el.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020066 </dependency>
67 <dependency>
68 <groupId>org.codehaus.woodstox</groupId>
69 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030070 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020071 </dependency>
72 <dependency>
73 <groupId>org.openecomp.sdc</groupId>
74 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030075 <version>1.2.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020076 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.dataformat</groupId>
79 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030080 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020081 </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>
Michael Landof5f13c42017-02-19 12:35:04 +020088 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030089</project>