blob: 7c5573c50af7a922bbc0126f55eeefdc52f9b2f5 [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 Lando04a5bef2018-10-23 01:32:15 +030029 <version>1.3.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>
40 <version>${jackson.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>org.apache.commons</groupId>
44 <artifactId>commons-configuration2</artifactId>
45 <version>2.1</version>
46 </dependency>
47 <dependency>
48 <groupId>commons-logging</groupId>
49 <artifactId>commons-logging</artifactId>
50 <version>${commons-logging}</version>
51 </dependency>
52 <dependency>
53 <groupId>commons-beanutils</groupId>
54 <artifactId>commons-beanutils</artifactId>
55 <version>${commons.beanutils.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.commons</groupId>
59 <artifactId>commons-lang3</artifactId>
60 <version>${commons.lang3.version}</version>
61 </dependency>
62 <dependency>
vempodecd2df2018-07-23 19:07:37 +030063 <groupId>commons-io</groupId>
64 <artifactId>commons-io</artifactId>
65 <version>${commons.io.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>net.sf.corn</groupId>
69 <artifactId>corn-cps</artifactId>
70 <version>1.1.7</version>
71 <exclusions>
72 <exclusion>
73 <groupId>com.sun</groupId>
74 <artifactId>tools</artifactId>
75 </exclusion>
76 </exclusions>
77 </dependency>
78 <dependency>
79 <groupId>com.virtlink.commons</groupId>
80 <artifactId>commons-configuration2-jackson</artifactId>
81 <version>0.6.1</version>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.logging.log4j</groupId>
85 <artifactId>log4j-core</artifactId>
86 <version>2.7</version>
87 </dependency>
88 <dependency>
89 <groupId>org.onap.sdc.common</groupId>
90 <artifactId>onap-configuration-management-api</artifactId>
91 <version>${project.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>javax.servlet</groupId>
95 <artifactId>javax.servlet-api</artifactId>
96 <version>${servlet-api.version}</version>
97 <scope>provided</scope>
98 </dependency>
99 <dependency>
100 <groupId>com.fasterxml.jackson.core</groupId>
101 <artifactId>jackson-annotations</artifactId>
102 <version>2.8.1</version>
103 </dependency>
104 <dependency>
105 <groupId>junit</groupId>
106 <artifactId>junit</artifactId>
107 <scope>test</scope>
vempo9125b482018-10-24 17:18:03 +0300108 </dependency>
109 <dependency>
110 <groupId>org.slf4j</groupId>
111 <artifactId>slf4j-api</artifactId>
vempodecd2df2018-07-23 19:07:37 +0300112 </dependency>
113 </dependencies>
amitjai42c920b2018-04-27 13:28:57 +0530114
vempo32ff3e32018-10-24 06:18:06 +0000115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-surefire-plugin</artifactId>
120 <version>${mvn.surefire.version}</version>
121 <configuration>
vempo9125b482018-10-24 17:18:03 +0300122 <!--
123 For some reason running without JaCoCo causes test failures.
124 Making tests depend on JaCoCo until the problem is fixed.
125 -->
126 <skipTests>${jacoco.skip}</skipTests>
vempo32ff3e32018-10-24 06:18:06 +0000127 <systemPropertyVariables>
128 <config.location>${project.basedir}/src/test/resources</config.location>
129 <node.config.location>${user.home}/TestResources</node.config.location>
130 </systemPropertyVariables>
131 <includes>
132 <include>**/TestCMSuite.java</include>
133 </includes>
134 </configuration>
135 </plugin>
136 </plugins>
137 </build>
138
amitjai42c920b2018-04-27 13:28:57 +0530139</project>