Step version to 1.12.2-SNAPSHOT
[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.12.2-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       </exclusions>
117     </dependency>
118     <dependency>
119       <groupId>org.eclipse.jetty</groupId>
120       <artifactId>jetty-servlet</artifactId>
121       <version>${jetty.version}</version>
122       <scope>compile</scope>
123       <exclusions>
124         <exclusion>
125           <groupId>org.eclipse.jetty</groupId>
126           <artifactId>jetty-security</artifactId>
127         </exclusion>
128       </exclusions>
129     </dependency>
130     <dependency>
131       <groupId>org.openecomp.sdc</groupId>
132       <artifactId>common-app-api</artifactId>
133       <version>${project.version}</version>
134       <scope>compile</scope>
135       <exclusions>
136         <exclusion>
137           <groupId>org.apache.httpcomponents</groupId>
138           <artifactId>httpcore</artifactId>
139         </exclusion>
140       </exclusions>
141     </dependency>
142   </dependencies>
143
144 </project>