blob: cc29a3e6dfea0e6670045ce0fd53a6f31cdaa90f [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>
MichaelMorris53aed702021-09-28 16:08:53 +010029 <version>1.10.0-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
vasraz85043182021-02-25 20:24:02 +000034 <!-- https://mvnrepository.com/artifact/org.awaitility/awaitility -->
35 <dependency>
36 <groupId>org.awaitility</groupId>
37 <artifactId>awaitility</artifactId>
38 <version>4.0.3</version>
39 <scope>test</scope>
40 </dependency>
vasraza36531c2020-04-29 18:39:35 +010041 <dependency>
42 <groupId>com.fasterxml.jackson.core</groupId>
43 <artifactId>jackson-databind</artifactId>
vasrazca685bb2020-06-11 17:05:29 +010044 <exclusions>
45 <exclusion>
46 <groupId>com.fasterxml.jackson.core</groupId>
47 <artifactId>jackson-core</artifactId>
48 </exclusion>
49 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010050 </dependency>
51 <dependency>
vasraz4a6db2e2021-02-26 15:29:10 +000052 <groupId>org.yaml</groupId>
53 <artifactId>snakeyaml</artifactId>
54 <version>${snakeyaml.version}</version>
55 </dependency>
56 <dependency>
vasraza36531c2020-04-29 18:39:35 +010057 <groupId>com.fasterxml.jackson.dataformat</groupId>
58 <artifactId>jackson-dataformat-yaml</artifactId>
vasraz4a6db2e2021-02-26 15:29:10 +000059 <exclusions>
60 <exclusion>
61 <groupId>org.yaml</groupId>
62 <artifactId>snakeyaml</artifactId>
63 </exclusion>
64 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010065 </dependency>
66 <dependency>
67 <groupId>org.apache.commons</groupId>
68 <artifactId>commons-configuration2</artifactId>
69 <version>${commons-configuration}</version>
70 </dependency>
71 <dependency>
72 <groupId>commons-beanutils</groupId>
73 <artifactId>commons-beanutils</artifactId>
74 <version>${commons-beanutils}</version>
75 </dependency>
76 <dependency>
77 <groupId>commons-logging</groupId>
78 <artifactId>commons-logging</artifactId>
79 <version>${commons-logging}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.commons</groupId>
83 <artifactId>commons-lang3</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>commons-io</groupId>
87 <artifactId>commons-io</artifactId>
88 </dependency>
89 <dependency>
Chris André568cb3a2020-05-22 13:48:27 -040090 <groupId>io.github.classgraph</groupId>
91 <artifactId>classgraph</artifactId>
92 <version>4.8.78</version>
vasraza36531c2020-04-29 18:39:35 +010093 </dependency>
94 <dependency>
95 <groupId>com.virtlink.commons</groupId>
96 <artifactId>commons-configuration2-jackson</artifactId>
97 <version>0.6.1</version>
98 </dependency>
99 <dependency>
100 <groupId>org.onap.sdc.common</groupId>
101 <artifactId>onap-configuration-management-api</artifactId>
102 <version>${project.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>javax.servlet-api</artifactId>
107 <scope>provided</scope>
108 </dependency>
109 <dependency>
110 <groupId>com.fasterxml.jackson.core</groupId>
111 <artifactId>jackson-annotations</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.slf4j</groupId>
115 <artifactId>slf4j-api</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>ch.qos.logback</groupId>
119 <artifactId>logback-classic</artifactId>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.openecomp.sdc</groupId>
124 <artifactId>openecomp-sdc-logging-api</artifactId>
125 <version>${project.version}</version>
126 <scope>compile</scope>
127 </dependency>
128 </dependencies>
129
130 <build>
131 <plugins>
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-surefire-plugin</artifactId>
vasraza36531c2020-04-29 18:39:35 +0100135 <configuration>
136 <systemPropertyVariables>
137 <config.location>${project.basedir}/src/test/resources</config.location>
138 <node.config.location>${user.home}/TestResources</node.config.location>
139 </systemPropertyVariables>
140 </configuration>
141 </plugin>
142 </plugins>
143 </build>
vempo32ff3e32018-10-24 06:18:06 +0000144
amitjai42c920b2018-04-27 13:28:57 +0530145</project>