Update version to 1.13.6-SNAPSHOT
[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.13.6-SNAPSHOT</version>
29   </parent>
30
31   <dependencies>
32
33     <dependency>
34       <groupId>org.yaml</groupId>
35       <artifactId>snakeyaml</artifactId>
36       <version>${snakeyaml.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.apache.commons</groupId>
40       <artifactId>commons-collections4</artifactId>
41       <version>${commons.collections.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>commons-beanutils</groupId>
45       <artifactId>commons-beanutils</artifactId>
46       <version>${commons-beanutils}</version>
47     </dependency>
48     <dependency>
49       <groupId>com.fasterxml.jackson.core</groupId>
50       <artifactId>jackson-core</artifactId>
51       <version>${jackson.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>com.fasterxml.jackson.core</groupId>
55       <artifactId>jackson-databind</artifactId>
56       <version>${jackson.version}</version>
57       <exclusions>
58         <exclusion>
59           <groupId>com.fasterxml.jackson.core</groupId>
60           <artifactId>jackson-core</artifactId>
61         </exclusion>
62       </exclusions>
63     </dependency>
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67       <version>${guava.version}</version>
68       <scope>compile</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.projectlombok</groupId>
72       <artifactId>lombok</artifactId>
73       <scope>provided</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.slf4j</groupId>
77       <artifactId>slf4j-api</artifactId>
78       <version>${slf4j.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>org.apache.commons</groupId>
82       <artifactId>commons-lang3</artifactId>
83       <version>${lang3.version}</version>
84       <scope>provided</scope>
85     </dependency>
86     <dependency>
87       <groupId>com.google.code.bean-matchers</groupId>
88       <artifactId>bean-matchers</artifactId>
89       <version>${bean-matchers.version}</version>
90       <scope>test</scope>
91     </dependency>
92   </dependencies>
93   <build>
94     <testResources>
95       <testResource>
96         <directory>src/test/resources</directory>
97         <filtering>true</filtering>
98       </testResource>
99     </testResources>
100   </build>
101 </project>