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