blob: 127907f0293bcbf73f8e8ffdeea65e26bd983540 [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>
AviZi280f8012017-06-09 02:39:56 +030021 </configuration>
22 </plugin>
23 </plugins>
24 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020025
26 <dependencies>
27 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020028 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>openecomp-sdc-vendor-license-core</artifactId>
30 <version>${project.version}</version>
31 </dependency>
32 <dependency>
33 <groupId>org.mockito</groupId>
34 <artifactId>mockito-all</artifactId>
35 <scope>test</scope>
AviZi280f8012017-06-09 02:39:56 +030036 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020037 </dependency>
38 <dependency>
39 <groupId>org.testng</groupId>
40 <artifactId>testng</artifactId>
41 <scope>test</scope>
42 <version>6.8.5</version>
43 <exclusions>
44 <exclusion>
45 <artifactId>snakeyaml</artifactId>
46 <groupId>org.yaml</groupId>
47 </exclusion>
48 </exclusions>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <scope>test</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030054 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020055 </dependency>
56 <dependency>
57 <groupId>javax.el</groupId>
58 <artifactId>javax.el-api</artifactId>
59 <version>${javax.el-api.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.glassfish.web</groupId>
63 <artifactId>javax.el</artifactId>
AviZi280f8012017-06-09 02:39:56 +030064 <version>${javax.el.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020065 </dependency>
66 <dependency>
67 <groupId>org.codehaus.woodstox</groupId>
68 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030069 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020070 </dependency>
71 <dependency>
72 <groupId>org.openecomp.sdc</groupId>
73 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030074 <version>1.2.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020075 </dependency>
76 <dependency>
77 <groupId>com.fasterxml.jackson.dataformat</groupId>
78 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030079 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020080 </dependency>
81 <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
82 <dependency>
83 <groupId>commons-io</groupId>
84 <artifactId>commons-io</artifactId>
85 <version>${commons.io.version}</version>
86 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020087 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030088</project>