Enabled unit tests of configuration framework
[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.3.1-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             <version>${jackson.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.apache.commons</groupId>
44             <artifactId>commons-configuration2</artifactId>
45             <version>2.3</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>
63             <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>
108         </dependency>
109         <dependency>
110             <groupId>org.slf4j</groupId>
111             <artifactId>slf4j-api</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>ch.qos.logback</groupId>
115             <artifactId>logback-classic</artifactId>
116             <scope>test</scope>
117         </dependency>
118     </dependencies>
119
120     <build>
121         <plugins>
122             <plugin>
123                 <groupId>org.apache.maven.plugins</groupId>
124                 <artifactId>maven-surefire-plugin</artifactId>
125                 <version>${mvn.surefire.version}</version>
126                 <configuration>
127                     <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
139 </project>