blob: 536784dee2a7b18fa00d2870e48c29b4f57b540f [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
Michael Landof5f13c42017-02-19 12:35:04 +020017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
AviZi280f8012017-06-09 02:39:56 +030021 <name>openecomp-sdc-vendor-license-manager</name>
22 <artifactId>openecomp-sdc-vendor-license-manager</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020023
24 <parent>
25 <artifactId>backend</artifactId>
26 <groupId>org.openecomp.sdc</groupId>
Michael Lando540a71e2018-11-05 09:48:40 +020027 <version>1.3.3-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020028 </parent>
29
Michael Landof5f13c42017-02-19 12:35:04 +020030 <dependencies>
31 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020032 <groupId>org.openecomp.sdc</groupId>
33 <artifactId>openecomp-sdc-vendor-license-core</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.mockito</groupId>
vempo2da911f2018-11-01 20:27:39 +020038 <artifactId>mockito-core</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020039 <scope>test</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020040 </dependency>
41 <dependency>
42 <groupId>org.testng</groupId>
43 <artifactId>testng</artifactId>
44 <scope>test</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020045 </dependency>
46 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020047 <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>
vempoe9930872018-07-15 16:53:59 +030064 <version>${project.version}</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>