blob: 9cd8f1c097b85a2731d6bba28e49cb155daa9934 [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>
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>
Chris André568cb3a2020-05-22 13:48:27 -040072 <groupId>io.github.classgraph</groupId>
73 <artifactId>classgraph</artifactId>
74 <version>4.8.78</version>
vasraza36531c2020-04-29 18:39:35 +010075 </dependency>
76 <dependency>
77 <groupId>com.virtlink.commons</groupId>
78 <artifactId>commons-configuration2-jackson</artifactId>
79 <version>0.6.1</version>
80 </dependency>
81 <dependency>
82 <groupId>org.onap.sdc.common</groupId>
83 <artifactId>onap-configuration-management-api</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>javax.servlet</groupId>
88 <artifactId>javax.servlet-api</artifactId>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>com.fasterxml.jackson.core</groupId>
93 <artifactId>jackson-annotations</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.slf4j</groupId>
97 <artifactId>slf4j-api</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>ch.qos.logback</groupId>
101 <artifactId>logback-classic</artifactId>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.openecomp.sdc</groupId>
106 <artifactId>openecomp-sdc-logging-api</artifactId>
107 <version>${project.version}</version>
108 <scope>compile</scope>
109 </dependency>
110 </dependencies>
111
112 <build>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-surefire-plugin</artifactId>
vasraza36531c2020-04-29 18:39:35 +0100117 <configuration>
118 <systemPropertyVariables>
119 <config.location>${project.basedir}/src/test/resources</config.location>
120 <node.config.location>${user.home}/TestResources</node.config.location>
121 </systemPropertyVariables>
122 </configuration>
123 </plugin>
124 </plugins>
125 </build>
vempo32ff3e32018-10-24 06:18:06 +0000126
amitjai42c920b2018-04-27 13:28:57 +0530127</project>