Update SDC version 1.5.0
[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.5.0-SNAPSHOT</version>
30     </parent>
31
32     <dependencies>
33         <dependency>
34             <groupId>com.fasterxml.jackson.core</groupId>
35             <artifactId>jackson-databind</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.fasterxml.jackson.dataformat</groupId>
39             <artifactId>jackson-dataformat-yaml</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.apache.commons</groupId>
43             <artifactId>commons-configuration2</artifactId>
44             <version>2.3</version>
45         </dependency>
46         <dependency>
47             <groupId>commons-logging</groupId>
48             <artifactId>commons-logging</artifactId>
49             <version>${commons-logging}</version>
50         </dependency>
51         <dependency>
52             <groupId>commons-beanutils</groupId>
53             <artifactId>commons-beanutils</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.apache.commons</groupId>
57             <artifactId>commons-lang3</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>commons-io</groupId>
61             <artifactId>commons-io</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>net.sf.corn</groupId>
65             <artifactId>corn-cps</artifactId>
66             <version>1.1.7</version>
67             <exclusions>
68                 <exclusion>
69                     <groupId>com.sun</groupId>
70                     <artifactId>tools</artifactId>
71                 </exclusion>
72             </exclusions>
73         </dependency>
74         <dependency>
75             <groupId>com.virtlink.commons</groupId>
76             <artifactId>commons-configuration2-jackson</artifactId>
77             <version>0.6.1</version>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.sdc.common</groupId>
81             <artifactId>onap-configuration-management-api</artifactId>
82             <version>${project.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>javax.servlet</groupId>
86             <artifactId>javax.servlet-api</artifactId>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>com.fasterxml.jackson.core</groupId>
91             <artifactId>jackson-annotations</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.slf4j</groupId>
100             <artifactId>slf4j-api</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>ch.qos.logback</groupId>
104             <artifactId>logback-classic</artifactId>
105             <scope>test</scope>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-surefire-plugin</artifactId>
114                 <version>${mvn.surefire.version}</version>
115                 <configuration>
116                     <systemPropertyVariables>
117                         <config.location>${project.basedir}/src/test/resources</config.location>
118                         <node.config.location>${user.home}/TestResources</node.config.location>
119                     </systemPropertyVariables>
120                 </configuration>
121             </plugin>
122         </plugins>
123     </build>
124
125 </project>