blob: c3d912fc5f26750b088595882639e714e4f5deff [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>
Michael Landob5fc68f2018-11-15 13:36:12 +020029 <version>1.4.0-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>
vempo313e73a2018-10-25 09:44:35 +000044 <version>2.3</version>
vempodecd2df2018-07-23 19:07:37 +030045 </dependency>
46 <dependency>
47 <groupId>commons-logging</groupId>
48 <artifactId>commons-logging</artifactId>
49 <version>${commons-logging}</version>
50 </dependency>
51 <dependency>
52 <groupId>commons-beanutils</groupId>
53 <artifactId>commons-beanutils</artifactId>
vempodecd2df2018-07-23 19:07:37 +030054 </dependency>
55 <dependency>
56 <groupId>org.apache.commons</groupId>
57 <artifactId>commons-lang3</artifactId>
vempodecd2df2018-07-23 19:07:37 +030058 </dependency>
59 <dependency>
vempodecd2df2018-07-23 19:07:37 +030060 <groupId>commons-io</groupId>
61 <artifactId>commons-io</artifactId>
vempodecd2df2018-07-23 19:07:37 +030062 </dependency>
63 <dependency>
64 <groupId>net.sf.corn</groupId>
65 <artifactId>corn-cps</artifactId>
66 <version>1.1.7</version>
67 <exclusions>
68 <exclusion>
69 <groupId>com.sun</groupId>
70 <artifactId>tools</artifactId>
71 </exclusion>
72 </exclusions>
73 </dependency>
74 <dependency>
75 <groupId>com.virtlink.commons</groupId>
76 <artifactId>commons-configuration2-jackson</artifactId>
77 <version>0.6.1</version>
78 </dependency>
79 <dependency>
vempodecd2df2018-07-23 19:07:37 +030080 <groupId>org.onap.sdc.common</groupId>
81 <artifactId>onap-configuration-management-api</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>javax.servlet</groupId>
86 <artifactId>javax.servlet-api</artifactId>
vempodecd2df2018-07-23 19:07:37 +030087 <scope>provided</scope>
88 </dependency>
89 <dependency>
90 <groupId>com.fasterxml.jackson.core</groupId>
91 <artifactId>jackson-annotations</artifactId>
vempodecd2df2018-07-23 19:07:37 +030092 </dependency>
93 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <scope>test</scope>
vempo9125b482018-10-24 17:18:03 +030097 </dependency>
98 <dependency>
99 <groupId>org.slf4j</groupId>
100 <artifactId>slf4j-api</artifactId>
vempodecd2df2018-07-23 19:07:37 +0300101 </dependency>
vempo313e73a2018-10-25 09:44:35 +0000102 <dependency>
103 <groupId>ch.qos.logback</groupId>
104 <artifactId>logback-classic</artifactId>
105 <scope>test</scope>
106 </dependency>
vempodecd2df2018-07-23 19:07:37 +0300107 </dependencies>
amitjai42c920b2018-04-27 13:28:57 +0530108
vempo32ff3e32018-10-24 06:18:06 +0000109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-plugin</artifactId>
114 <version>${mvn.surefire.version}</version>
115 <configuration>
vempo32ff3e32018-10-24 06:18:06 +0000116 <systemPropertyVariables>
vempo461e9642018-10-31 10:27:59 +0200117 <config.location>${project.basedir}/src/test/resources</config.location>
vempo32ff3e32018-10-24 06:18:06 +0000118 <node.config.location>${user.home}/TestResources</node.config.location>
119 </systemPropertyVariables>
vempo32ff3e32018-10-24 06:18:06 +0000120 </configuration>
121 </plugin>
122 </plugins>
123 </build>
124
amitjai42c920b2018-04-27 13:28:57 +0530125</project>