blob: 514cef6b107e69a43f6e1e147fc36ad9d2ce21d1 [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>
MichaelMorris0560a3a2023-10-27 18:18:46 +010029 <version>1.13.6-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>
vasraz65d266b2023-07-12 21:15:52 +010076
vasraza36531c2020-04-29 18:39:35 +010077 <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>
Chris André568cb3a2020-05-22 13:48:27 -040086 <groupId>io.github.classgraph</groupId>
87 <artifactId>classgraph</artifactId>
vasraz584dfd72022-03-03 11:38:39 +000088 <version>4.8.137</version>
vasraza36531c2020-04-29 18:39:35 +010089 </dependency>
90 <dependency>
91 <groupId>com.virtlink.commons</groupId>
92 <artifactId>commons-configuration2-jackson</artifactId>
93 <version>0.6.1</version>
94 </dependency>
95 <dependency>
96 <groupId>org.onap.sdc.common</groupId>
97 <artifactId>onap-configuration-management-api</artifactId>
98 <version>${project.version}</version>
99 </dependency>
100 <dependency>
vasraza36531c2020-04-29 18:39:35 +0100101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-annotations</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>org.slf4j</groupId>
106 <artifactId>slf4j-api</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>ch.qos.logback</groupId>
110 <artifactId>logback-classic</artifactId>
vasraz987fc742021-11-29 17:42:02 +0000111 <version>${logback.version}</version>
vasraza36531c2020-04-29 18:39:35 +0100112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.openecomp.sdc</groupId>
116 <artifactId>openecomp-sdc-logging-api</artifactId>
117 <version>${project.version}</version>
118 <scope>compile</scope>
119 </dependency>
120 </dependencies>
121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-surefire-plugin</artifactId>
vasraza36531c2020-04-29 18:39:35 +0100127 <configuration>
128 <systemPropertyVariables>
129 <config.location>${project.basedir}/src/test/resources</config.location>
130 <node.config.location>${user.home}/TestResources</node.config.location>
131 </systemPropertyVariables>
132 </configuration>
133 </plugin>
134 </plugins>
135 </build>
vempo32ff3e32018-10-24 06:18:06 +0000136
amitjai42c920b2018-04-27 13:28:57 +0530137</project>