blob: 2c7fd006d5f74ff5fbaf0ae6c714b87eea44dbc3 [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"
18 xmlns="http://maven.apache.org/POM/4.0.0"
vempodecd2df2018-07-23 19:07:37 +030019 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
vempodecd2df2018-07-23 19:07:37 +030021 <modelVersion>4.0.0</modelVersion>
amitjai42c920b2018-04-27 13:28:57 +053022
vempodecd2df2018-07-23 19:07:37 +030023 <name>onap-configuration-management-core</name>
24 <artifactId>onap-configuration-management-core</artifactId>
amitjai42c920b2018-04-27 13:28:57 +053025
vempodecd2df2018-07-23 19:07:37 +030026 <parent>
27 <artifactId>onap-common-configuration-management</artifactId>
28 <groupId>org.onap.sdc.common</groupId>
Ofir Sonsino610ff242019-07-28 15:44:36 +030029 <version>1.5.1-SNAPSHOT</version>
vempodecd2df2018-07-23 19:07:37 +030030 </parent>
amitjai42c920b2018-04-27 13:28:57 +053031
vempodecd2df2018-07-23 19:07:37 +030032 <dependencies>
33 <dependency>
34 <groupId>com.fasterxml.jackson.core</groupId>
35 <artifactId>jackson-databind</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>com.fasterxml.jackson.dataformat</groupId>
39 <artifactId>jackson-dataformat-yaml</artifactId>
vempodecd2df2018-07-23 19:07:37 +030040 </dependency>
41 <dependency>
42 <groupId>org.apache.commons</groupId>
43 <artifactId>commons-configuration2</artifactId>
Tomasz Golabekb836d342019-06-11 13:41:48 +020044 <version>${commons-configuration}</version>
45 </dependency>
46 <dependency>
47 <groupId>commons-beanutils</groupId>
48 <artifactId>commons-beanutils</artifactId>
49 <version>${commons-beanutils}</version>
vempodecd2df2018-07-23 19:07:37 +030050 </dependency>
51 <dependency>
52 <groupId>commons-logging</groupId>
53 <artifactId>commons-logging</artifactId>
54 <version>${commons-logging}</version>
55 </dependency>
56 <dependency>
vempodecd2df2018-07-23 19:07:37 +030057 <groupId>org.apache.commons</groupId>
58 <artifactId>commons-lang3</artifactId>
vempodecd2df2018-07-23 19:07:37 +030059 </dependency>
60 <dependency>
vempodecd2df2018-07-23 19:07:37 +030061 <groupId>commons-io</groupId>
62 <artifactId>commons-io</artifactId>
vempodecd2df2018-07-23 19:07:37 +030063 </dependency>
64 <dependency>
65 <groupId>net.sf.corn</groupId>
66 <artifactId>corn-cps</artifactId>
67 <version>1.1.7</version>
68 <exclusions>
69 <exclusion>
70 <groupId>com.sun</groupId>
71 <artifactId>tools</artifactId>
72 </exclusion>
73 </exclusions>
74 </dependency>
75 <dependency>
76 <groupId>com.virtlink.commons</groupId>
77 <artifactId>commons-configuration2-jackson</artifactId>
78 <version>0.6.1</version>
79 </dependency>
80 <dependency>
vempodecd2df2018-07-23 19:07:37 +030081 <groupId>org.onap.sdc.common</groupId>
82 <artifactId>onap-configuration-management-api</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>javax.servlet</groupId>
87 <artifactId>javax.servlet-api</artifactId>
vempodecd2df2018-07-23 19:07:37 +030088 <scope>provided</scope>
89 </dependency>
90 <dependency>
91 <groupId>com.fasterxml.jackson.core</groupId>
92 <artifactId>jackson-annotations</artifactId>
vempodecd2df2018-07-23 19:07:37 +030093 </dependency>
94 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <scope>test</scope>
vempo9125b482018-10-24 17:18:03 +030098 </dependency>
99 <dependency>
100 <groupId>org.slf4j</groupId>
101 <artifactId>slf4j-api</artifactId>
vempodecd2df2018-07-23 19:07:37 +0300102 </dependency>
vempo313e73a2018-10-25 09:44:35 +0000103 <dependency>
104 <groupId>ch.qos.logback</groupId>
105 <artifactId>logback-classic</artifactId>
106 <scope>test</scope>
107 </dependency>
Piotr Borelowski0b5efe72019-06-25 17:17:41 +0200108 <dependency>
109 <groupId>org.openecomp.sdc</groupId>
110 <artifactId>openecomp-sdc-logging-api</artifactId>
111 <version>${project.version}</version>
112 <scope>compile</scope>
113 </dependency>
vempodecd2df2018-07-23 19:07:37 +0300114 </dependencies>
Piotr Borelowski0b5efe72019-06-25 17:17:41 +0200115
vempo32ff3e32018-10-24 06:18:06 +0000116 <build>
117 <plugins>
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-surefire-plugin</artifactId>
121 <version>${mvn.surefire.version}</version>
122 <configuration>
vempo32ff3e32018-10-24 06:18:06 +0000123 <systemPropertyVariables>
vempo461e9642018-10-31 10:27:59 +0200124 <config.location>${project.basedir}/src/test/resources</config.location>
vempo32ff3e32018-10-24 06:18:06 +0000125 <node.config.location>${user.home}/TestResources</node.config.location>
126 </systemPropertyVariables>
vempo32ff3e32018-10-24 06:18:06 +0000127 </configuration>
128 </plugin>
129 </plugins>
130 </build>
131
amitjai42c920b2018-04-27 13:28:57 +0530132</project>