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