Improved the ConfigurationRepositoryTest.
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-core / pom.xml
1 <!--
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
17 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18          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">
20
21     <modelVersion>4.0.0</modelVersion>
22
23     <name>onap-configuration-management-core</name>
24     <artifactId>onap-configuration-management-core</artifactId>
25
26     <parent>
27         <artifactId>onap-common-configuration-management</artifactId>
28         <groupId>org.onap.sdc.common</groupId>
29         <version>1.5.0-SNAPSHOT</version>
30     </parent>
31
32     <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         </dependency>
41         <dependency>
42             <groupId>org.apache.commons</groupId>
43             <artifactId>commons-configuration2</artifactId>
44             <version>${commons-configuration}</version>
45         </dependency>
46         <dependency>
47             <groupId>commons-beanutils</groupId>
48             <artifactId>commons-beanutils</artifactId>
49             <version>${commons-beanutils}</version>
50         </dependency>
51         <dependency>
52             <groupId>commons-logging</groupId>
53             <artifactId>commons-logging</artifactId>
54             <version>${commons-logging}</version>
55         </dependency>
56         <dependency>
57             <groupId>org.apache.commons</groupId>
58             <artifactId>commons-lang3</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>commons-io</groupId>
62             <artifactId>commons-io</artifactId>
63         </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>
81             <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>
88             <scope>provided</scope>
89         </dependency>
90         <dependency>
91             <groupId>com.fasterxml.jackson.core</groupId>
92             <artifactId>jackson-annotations</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>junit</groupId>
96             <artifactId>junit</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.slf4j</groupId>
101             <artifactId>slf4j-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>ch.qos.logback</groupId>
105             <artifactId>logback-classic</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-module-junit4</artifactId>
111             <version>2.0.2</version>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115
116     <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>
123                     <systemPropertyVariables>
124                         <config.location>${project.basedir}/src/test/resources</config.location>
125                         <node.config.location>${user.home}/TestResources</node.config.location>
126                     </systemPropertyVariables>
127                 </configuration>
128             </plugin>
129         </plugins>
130     </build>
131
132 </project>