161bc3574e93410949ab0e15445ffa9b67dabe5a
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-utilities-lib / pom.xml
1 <!--
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
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20   <modelVersion>4.0.0</modelVersion>
21
22   <name>openecomp-utilities-lib</name>
23   <artifactId>openecomp-utilities-lib</artifactId>
24
25   <parent>
26     <artifactId>openecomp-core-lib</artifactId>
27     <groupId>org.openecomp.sdc.core</groupId>
28     <version>1.13.3-SNAPSHOT</version>
29   </parent>
30
31   <dependencies>
32     <dependency>
33       <groupId>org.onap.sdc.common</groupId>
34       <artifactId>onap-tosca-datatype</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.yaml</groupId>
39       <artifactId>snakeyaml</artifactId>
40       <version>${snakeyaml.version}</version>
41     </dependency>
42     <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
43     <dependency>
44       <groupId>commons-io</groupId>
45       <artifactId>commons-io</artifactId>
46       <version>${commons.io.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.commons</groupId>
50       <artifactId>commons-lang3</artifactId>
51       <version>${commons.lang3.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.apache.commons</groupId>
55       <artifactId>commons-collections4</artifactId>
56       <version>${commons.collections.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>com.google.code.gson</groupId>
60       <artifactId>gson</artifactId>
61       <version>${gson.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>commons-codec</groupId>
65       <artifactId>commons-codec</artifactId>
66       <version>${commons.codec.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>org.hamcrest</groupId>
70       <artifactId>hamcrest</artifactId>
71       <version>${hamcrest.version}</version>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.hamcrest</groupId>
76       <artifactId>hamcrest-library</artifactId>
77       <version>${hamcrest.version}</version>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>com.fasterxml.jackson.core</groupId>
82       <artifactId>jackson-databind</artifactId>
83       <version>${jackson.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.json</groupId>
87       <artifactId>json</artifactId>
88       <version>${org.json.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.everit.json</groupId>
92       <artifactId>org.everit.json.schema</artifactId>
93       <version>${org.everit.json.schema.version}</version>
94       <exclusions>
95         <exclusion>
96           <groupId>org.json</groupId>
97           <artifactId>json</artifactId>
98         </exclusion>
99       </exclusions>
100     </dependency>
101     <dependency>
102       <groupId>org.openecomp.sdc</groupId>
103       <artifactId>openecomp-sdc-logging-api</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>org.eclipse.jetty</groupId>
108       <artifactId>jetty-server</artifactId>
109       <version>${jetty.version}</version>
110       <scope>compile</scope>
111       <exclusions>
112         <exclusion>
113           <groupId>org.eclipse.jetty</groupId>
114           <artifactId>jetty-http</artifactId>
115         </exclusion>
116         <exclusion>
117           <groupId>javax.servlet</groupId>
118           <artifactId>javax.servlet-api</artifactId>
119         </exclusion>
120       </exclusions>
121     </dependency>
122     <dependency>
123       <groupId>org.eclipse.jetty</groupId>
124       <artifactId>jetty-servlet</artifactId>
125       <version>${jetty.version}</version>
126       <scope>compile</scope>
127       <exclusions>
128         <exclusion>
129           <groupId>org.eclipse.jetty</groupId>
130           <artifactId>jetty-security</artifactId>
131         </exclusion>
132       </exclusions>
133     </dependency>
134     <dependency>
135       <groupId>org.openecomp.sdc</groupId>
136       <artifactId>common-app-api</artifactId>
137       <version>${project.version}</version>
138       <scope>compile</scope>
139       <exclusions>
140         <exclusion>
141           <groupId>org.apache.httpcomponents</groupId>
142           <artifactId>httpcore</artifactId>
143         </exclusion>
144       </exclusions>
145     </dependency>
146   </dependencies>
147
148 </project>