blob: 22e858149a7c6829f232cc416ccaae4522efc1ba [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>
29 <version>1.7.0-SNAPSHOT</version>
30 </parent>
amitjai42c920b2018-04-27 13:28:57 +053031
vasraza36531c2020-04-29 18:39:35 +010032 <dependencies>
33 <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
34 <dependency>
35 <groupId>org.junit.jupiter</groupId>
36 <artifactId>junit-jupiter-engine</artifactId>
37 <version>${junitJupiter.version}</version>
38 <scope>test</scope>
39 </dependency>
40 <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API -->
41 <dependency>
42 <groupId>org.junit.vintage</groupId>
43 <artifactId>junit-vintage-engine</artifactId>
44 <version>${junitJupiter.version}</version>
45 </dependency>
Piotr Borelowski0b5efe72019-06-25 17:17:41 +020046
vasraza36531c2020-04-29 18:39:35 +010047 <dependency>
48 <groupId>com.fasterxml.jackson.core</groupId>
49 <artifactId>jackson-databind</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>com.fasterxml.jackson.dataformat</groupId>
53 <artifactId>jackson-dataformat-yaml</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.commons</groupId>
57 <artifactId>commons-configuration2</artifactId>
58 <version>${commons-configuration}</version>
59 </dependency>
60 <dependency>
61 <groupId>commons-beanutils</groupId>
62 <artifactId>commons-beanutils</artifactId>
63 <version>${commons-beanutils}</version>
64 </dependency>
65 <dependency>
66 <groupId>commons-logging</groupId>
67 <artifactId>commons-logging</artifactId>
68 <version>${commons-logging}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.commons</groupId>
72 <artifactId>commons-lang3</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>commons-io</groupId>
76 <artifactId>commons-io</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>net.sf.corn</groupId>
80 <artifactId>corn-cps</artifactId>
81 <version>1.1.7</version>
82 <exclusions>
83 <exclusion>
84 <groupId>com.sun</groupId>
85 <artifactId>tools</artifactId>
86 </exclusion>
87 </exclusions>
88 </dependency>
89 <dependency>
90 <groupId>com.virtlink.commons</groupId>
91 <artifactId>commons-configuration2-jackson</artifactId>
92 <version>0.6.1</version>
93 </dependency>
94 <dependency>
95 <groupId>org.onap.sdc.common</groupId>
96 <artifactId>onap-configuration-management-api</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>javax.servlet</groupId>
101 <artifactId>javax.servlet-api</artifactId>
102 <scope>provided</scope>
103 </dependency>
104 <dependency>
105 <groupId>com.fasterxml.jackson.core</groupId>
106 <artifactId>jackson-annotations</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.slf4j</groupId>
110 <artifactId>slf4j-api</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>ch.qos.logback</groupId>
114 <artifactId>logback-classic</artifactId>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.openecomp.sdc</groupId>
119 <artifactId>openecomp-sdc-logging-api</artifactId>
120 <version>${project.version}</version>
121 <scope>compile</scope>
122 </dependency>
123 </dependencies>
124
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-surefire-plugin</artifactId>
130 <version>${maven-surefire-plugin.version}</version>
131 <configuration>
132 <systemPropertyVariables>
133 <config.location>${project.basedir}/src/test/resources</config.location>
134 <node.config.location>${user.home}/TestResources</node.config.location>
135 </systemPropertyVariables>
136 </configuration>
137 </plugin>
138 </plugins>
139 </build>
vempo32ff3e32018-10-24 06:18:06 +0000140
amitjai42c920b2018-04-27 13:28:57 +0530141</project>