Update version to 1.13.6-SNAPSHOT
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-core / 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
18   xmlns="http://maven.apache.org/POM/4.0.0"
19   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
21   <modelVersion>4.0.0</modelVersion>
22
23   <name>onap-configuration-management-core</name>
24   <artifactId>onap-configuration-management-core</artifactId>
25
26   <parent>
27     <artifactId>onap-common-configuration-management</artifactId>
28     <groupId>org.onap.sdc.common</groupId>
29     <version>1.13.6-SNAPSHOT</version>
30   </parent>
31
32   <dependencies>
33
34     <!-- https://mvnrepository.com/artifact/org.awaitility/awaitility -->
35     <dependency>
36       <groupId>org.awaitility</groupId>
37       <artifactId>awaitility</artifactId>
38       <version>4.0.3</version>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>com.fasterxml.jackson.core</groupId>
43       <artifactId>jackson-databind</artifactId>
44       <exclusions>
45         <exclusion>
46           <groupId>com.fasterxml.jackson.core</groupId>
47           <artifactId>jackson-core</artifactId>
48         </exclusion>
49       </exclusions>
50     </dependency>
51     <dependency>
52       <groupId>org.yaml</groupId>
53       <artifactId>snakeyaml</artifactId>
54       <version>${snakeyaml.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>com.fasterxml.jackson.dataformat</groupId>
58       <artifactId>jackson-dataformat-yaml</artifactId>
59       <exclusions>
60         <exclusion>
61           <groupId>org.yaml</groupId>
62           <artifactId>snakeyaml</artifactId>
63         </exclusion>
64       </exclusions>
65     </dependency>
66     <dependency>
67       <groupId>org.apache.commons</groupId>
68       <artifactId>commons-configuration2</artifactId>
69       <version>${commons-configuration}</version>
70     </dependency>
71     <dependency>
72       <groupId>commons-beanutils</groupId>
73       <artifactId>commons-beanutils</artifactId>
74       <version>${commons-beanutils}</version>
75     </dependency>
76
77     <dependency>
78       <groupId>org.apache.commons</groupId>
79       <artifactId>commons-lang3</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>commons-io</groupId>
83       <artifactId>commons-io</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>io.github.classgraph</groupId>
87       <artifactId>classgraph</artifactId>
88       <version>4.8.137</version>
89     </dependency>
90     <dependency>
91       <groupId>com.virtlink.commons</groupId>
92       <artifactId>commons-configuration2-jackson</artifactId>
93       <version>0.6.1</version>
94     </dependency>
95     <dependency>
96       <groupId>org.onap.sdc.common</groupId>
97       <artifactId>onap-configuration-management-api</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>com.fasterxml.jackson.core</groupId>
102       <artifactId>jackson-annotations</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.slf4j</groupId>
106       <artifactId>slf4j-api</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>ch.qos.logback</groupId>
110       <artifactId>logback-classic</artifactId>
111       <version>${logback.version}</version>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.openecomp.sdc</groupId>
116       <artifactId>openecomp-sdc-logging-api</artifactId>
117       <version>${project.version}</version>
118       <scope>compile</scope>
119     </dependency>
120   </dependencies>
121
122   <build>
123     <plugins>
124       <plugin>
125         <groupId>org.apache.maven.plugins</groupId>
126         <artifactId>maven-surefire-plugin</artifactId>
127         <configuration>
128           <systemPropertyVariables>
129             <config.location>${project.basedir}/src/test/resources</config.location>
130             <node.config.location>${user.home}/TestResources</node.config.location>
131           </systemPropertyVariables>
132         </configuration>
133       </plugin>
134     </plugins>
135   </build>
136
137 </project>