blob: 83dfa8e59c3504904ccf3f72318edbeb6d141a50 [file] [log] [blame]
vempo9125b482018-10-24 17:18:03 +03001<!--
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
vempo933cdbd2018-10-25 19:27:22 +030017<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
vasraza36531c2020-04-29 18:39:35 +010018 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">
amitjai42c920b2018-04-27 13:28:57 +053020
vasraza36531c2020-04-29 18:39:35 +010021 <modelVersion>4.0.0</modelVersion>
amitjai42c920b2018-04-27 13:28:57 +053022
vasraza36531c2020-04-29 18:39:35 +010023 <name>onap-configuration-management-core</name>
24 <artifactId>onap-configuration-management-core</artifactId>
amitjai42c920b2018-04-27 13:28:57 +053025
vasraza36531c2020-04-29 18:39:35 +010026 <parent>
27 <artifactId>onap-common-configuration-management</artifactId>
28 <groupId>org.onap.sdc.common</groupId>
ChrisC94133cb2021-02-17 16:02:05 +010029 <version>1.8.2-SNAPSHOT</version>
vasraza36531c2020-04-29 18:39:35 +010030 </parent>
amitjai42c920b2018-04-27 13:28:57 +053031
vasraza36531c2020-04-29 18:39:35 +010032 <dependencies>
Piotr Borelowski0b5efe72019-06-25 17:17:41 +020033
vasraza36531c2020-04-29 18:39:35 +010034 <dependency>
35 <groupId>com.fasterxml.jackson.core</groupId>
36 <artifactId>jackson-databind</artifactId>
vasrazca685bb2020-06-11 17:05:29 +010037 <exclusions>
38 <exclusion>
39 <groupId>com.fasterxml.jackson.core</groupId>
40 <artifactId>jackson-core</artifactId>
41 </exclusion>
42 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010043 </dependency>
44 <dependency>
vasraz4a6db2e2021-02-26 15:29:10 +000045 <groupId>org.yaml</groupId>
46 <artifactId>snakeyaml</artifactId>
47 <version>${snakeyaml.version}</version>
48 </dependency>
49 <dependency>
vasraza36531c2020-04-29 18:39:35 +010050 <groupId>com.fasterxml.jackson.dataformat</groupId>
51 <artifactId>jackson-dataformat-yaml</artifactId>
vasraz4a6db2e2021-02-26 15:29:10 +000052 <exclusions>
53 <exclusion>
54 <groupId>org.yaml</groupId>
55 <artifactId>snakeyaml</artifactId>
56 </exclusion>
57 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010058 </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>
Chris André568cb3a2020-05-22 13:48:27 -040083 <groupId>io.github.classgraph</groupId>
84 <artifactId>classgraph</artifactId>
85 <version>4.8.78</version>
vasraza36531c2020-04-29 18:39:35 +010086 </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>
vasraza36531c2020-04-29 18:39:35 +0100128 <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>
vempo32ff3e32018-10-24 06:18:06 +0000137
amitjai42c920b2018-04-27 13:28:57 +0530138</project>