ac39119ed257abf39b827d9ccaa7e3f8520eed17
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-license-manager / pom.xml
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
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.1.0-SNAPSHOT</version>
12     </parent>
13
14     <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>
26
27     <dependencies>
28         <dependency>
29             <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>
37             <version>${mockito.all.version}</version>
38         </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>
55             <version>4.11</version>
56         </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>
65             <version>${javax.el.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.codehaus.woodstox</groupId>
69             <artifactId>woodstox-core-asl</artifactId>
70             <version>${woodstox.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.openecomp.sdc</groupId>
74             <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
75             <version>1.1.0-SNAPSHOT</version>
76         </dependency>
77         <dependency>
78             <groupId>com.fasterxml.jackson.dataformat</groupId>
79             <artifactId>jackson-dataformat-xml</artifactId>
80             <version>${jackson.version}</version>
81         </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>
88     </dependencies>
89 </project>