Implement PNFD Model driven conversion
[sdc.git] / common / onap-tosca-datatype / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2016-2018 European Support Limited
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at
8   ~
9   ~      http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21         <modelVersion>4.0.0</modelVersion>
22
23         <artifactId>onap-tosca-datatype</artifactId>
24
25         <parent>
26                 <artifactId>onap-common-lib</artifactId>
27                 <groupId>org.onap.sdc.common</groupId>
28                 <version>1.5.1-SNAPSHOT</version>
29         </parent>
30
31         <dependencies>
32                 <dependency>
33                         <groupId>org.yaml</groupId>
34                         <artifactId>snakeyaml</artifactId>
35                         <version>1.17</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>org.apache.commons</groupId>
39                         <artifactId>commons-collections4</artifactId>
40                         <version>${commons.collections.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>commons-beanutils</groupId>
44                         <artifactId>commons-beanutils</artifactId>
45                         <version>${commons-beanutils}</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>com.fasterxml.jackson.core</groupId>
49                         <artifactId>jackson-databind</artifactId>
50                         <version>${jackson.version}</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>junit</groupId>
54                         <artifactId>junit</artifactId>
55                         <scope>test</scope>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.mockito</groupId>
59                         <artifactId>mockito-core</artifactId>
60                         <scope>test</scope>
61                 </dependency>
62                 <dependency>
63                         <groupId>com.google.guava</groupId>
64                         <artifactId>guava</artifactId>
65                         <version>${guava.version}</version>
66                         <scope>compile</scope>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.projectlombok</groupId>
70                         <artifactId>lombok</artifactId>
71                         <scope>provided</scope>
72                 </dependency>
73                 <dependency>
74                         <groupId>org.slf4j</groupId>
75                         <artifactId>slf4j-api</artifactId>
76                         <version>${slf4j.version}</version>
77                 </dependency>
78         </dependencies>
79 </project>