Fix Critical security vulnerability
[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     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
34     <dependency>
35       <groupId>org.junit.jupiter</groupId>
36       <artifactId>junit-jupiter-engine</artifactId>
37       <version>${junitJupiter.version}</version>
38       <scope>test</scope>
39     </dependency>
40     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
41     <dependency>
42       <groupId>org.junit.vintage</groupId>
43       <artifactId>junit-vintage-engine</artifactId>
44       <version>${junitJupiter.version}</version>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>com.fasterxml.jackson.core</groupId>
50       <artifactId>jackson-databind</artifactId>
51       <exclusions>
52         <exclusion>
53           <groupId>com.fasterxml.jackson.core</groupId>
54           <artifactId>jackson-core</artifactId>
55         </exclusion>
56       </exclusions>
57     </dependency>
58     <dependency>
59       <groupId>com.fasterxml.jackson.dataformat</groupId>
60       <artifactId>jackson-dataformat-yaml</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.apache.commons</groupId>
64       <artifactId>commons-configuration2</artifactId>
65       <version>${commons-configuration}</version>
66     </dependency>
67     <dependency>
68       <groupId>commons-beanutils</groupId>
69       <artifactId>commons-beanutils</artifactId>
70       <version>${commons-beanutils}</version>
71     </dependency>
72     <dependency>
73       <groupId>commons-logging</groupId>
74       <artifactId>commons-logging</artifactId>
75       <version>${commons-logging}</version>
76     </dependency>
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>net.sf.corn</groupId>
87       <artifactId>corn-cps</artifactId>
88       <version>1.1.7</version>
89       <exclusions>
90         <exclusion>
91           <groupId>com.sun</groupId>
92           <artifactId>tools</artifactId>
93         </exclusion>
94       </exclusions>
95     </dependency>
96     <dependency>
97       <groupId>com.virtlink.commons</groupId>
98       <artifactId>commons-configuration2-jackson</artifactId>
99       <version>0.6.1</version>
100     </dependency>
101     <dependency>
102       <groupId>org.onap.sdc.common</groupId>
103       <artifactId>onap-configuration-management-api</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>javax.servlet</groupId>
108       <artifactId>javax.servlet-api</artifactId>
109       <scope>provided</scope>
110     </dependency>
111     <dependency>
112       <groupId>com.fasterxml.jackson.core</groupId>
113       <artifactId>jackson-annotations</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.slf4j</groupId>
117       <artifactId>slf4j-api</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>ch.qos.logback</groupId>
121       <artifactId>logback-classic</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.openecomp.sdc</groupId>
126       <artifactId>openecomp-sdc-logging-api</artifactId>
127       <version>${project.version}</version>
128       <scope>compile</scope>
129     </dependency>
130   </dependencies>
131
132   <build>
133     <plugins>
134       <plugin>
135         <groupId>org.apache.maven.plugins</groupId>
136         <artifactId>maven-surefire-plugin</artifactId>
137         <version>${maven-surefire-plugin.version}</version>
138         <configuration>
139           <systemPropertyVariables>
140             <config.location>${project.basedir}/src/test/resources</config.location>
141             <node.config.location>${user.home}/TestResources</node.config.location>
142           </systemPropertyVariables>
143         </configuration>
144       </plugin>
145     </plugins>
146   </build>
147
148 </project>