Reduce scope from 'compile' to 'test' for 'junit-vintage-engine'
[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.7.0-SNAPSHOT</version>
30   </parent>
31
32   <dependencies>
33     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
34     <dependency>
35       <groupId>org.junit.jupiter</groupId>
36       <artifactId>junit-jupiter-engine</artifactId>
37       <version>${junitJupiter.version}</version>
38       <scope>test</scope>
39     </dependency>
40     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
41     <dependency>
42       <groupId>org.junit.vintage</groupId>
43       <artifactId>junit-vintage-engine</artifactId>
44       <version>${junitJupiter.version}</version>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>com.fasterxml.jackson.core</groupId>
50       <artifactId>jackson-databind</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>com.fasterxml.jackson.dataformat</groupId>
54       <artifactId>jackson-dataformat-yaml</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.apache.commons</groupId>
58       <artifactId>commons-configuration2</artifactId>
59       <version>${commons-configuration}</version>
60     </dependency>
61     <dependency>
62       <groupId>commons-beanutils</groupId>
63       <artifactId>commons-beanutils</artifactId>
64       <version>${commons-beanutils}</version>
65     </dependency>
66     <dependency>
67       <groupId>commons-logging</groupId>
68       <artifactId>commons-logging</artifactId>
69       <version>${commons-logging}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.apache.commons</groupId>
73       <artifactId>commons-lang3</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>commons-io</groupId>
77       <artifactId>commons-io</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>net.sf.corn</groupId>
81       <artifactId>corn-cps</artifactId>
82       <version>1.1.7</version>
83       <exclusions>
84         <exclusion>
85           <groupId>com.sun</groupId>
86           <artifactId>tools</artifactId>
87         </exclusion>
88       </exclusions>
89     </dependency>
90     <dependency>
91       <groupId>com.virtlink.commons</groupId>
92       <artifactId>commons-configuration2-jackson</artifactId>
93       <version>0.6.1</version>
94     </dependency>
95     <dependency>
96       <groupId>org.onap.sdc.common</groupId>
97       <artifactId>onap-configuration-management-api</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>javax.servlet</groupId>
102       <artifactId>javax.servlet-api</artifactId>
103       <scope>provided</scope>
104     </dependency>
105     <dependency>
106       <groupId>com.fasterxml.jackson.core</groupId>
107       <artifactId>jackson-annotations</artifactId>
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     <dependency>
119       <groupId>org.openecomp.sdc</groupId>
120       <artifactId>openecomp-sdc-logging-api</artifactId>
121       <version>${project.version}</version>
122       <scope>compile</scope>
123     </dependency>
124   </dependencies>
125
126   <build>
127     <plugins>
128       <plugin>
129         <groupId>org.apache.maven.plugins</groupId>
130         <artifactId>maven-surefire-plugin</artifactId>
131         <version>${maven-surefire-plugin.version}</version>
132         <configuration>
133           <systemPropertyVariables>
134             <config.location>${project.basedir}/src/test/resources</config.location>
135             <node.config.location>${user.home}/TestResources</node.config.location>
136           </systemPropertyVariables>
137         </configuration>
138       </plugin>
139     </plugins>
140   </build>
141
142 </project>