Upgrade to 1.7.2
[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.2</version>
30   </parent>
31
32   <dependencies>
33
34     <dependency>
35       <groupId>com.fasterxml.jackson.core</groupId>
36       <artifactId>jackson-databind</artifactId>
37       <exclusions>
38         <exclusion>
39           <groupId>com.fasterxml.jackson.core</groupId>
40           <artifactId>jackson-core</artifactId>
41         </exclusion>
42       </exclusions>
43     </dependency>
44     <dependency>
45       <groupId>com.fasterxml.jackson.dataformat</groupId>
46       <artifactId>jackson-dataformat-yaml</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.commons</groupId>
50       <artifactId>commons-configuration2</artifactId>
51       <version>${commons-configuration}</version>
52     </dependency>
53     <dependency>
54       <groupId>commons-beanutils</groupId>
55       <artifactId>commons-beanutils</artifactId>
56       <version>${commons-beanutils}</version>
57     </dependency>
58     <dependency>
59       <groupId>commons-logging</groupId>
60       <artifactId>commons-logging</artifactId>
61       <version>${commons-logging}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.apache.commons</groupId>
65       <artifactId>commons-lang3</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>commons-io</groupId>
69       <artifactId>commons-io</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>io.github.classgraph</groupId>
73       <artifactId>classgraph</artifactId>
74       <version>4.8.78</version>
75     </dependency>
76     <dependency>
77       <groupId>com.virtlink.commons</groupId>
78       <artifactId>commons-configuration2-jackson</artifactId>
79       <version>0.6.1</version>
80     </dependency>
81     <dependency>
82       <groupId>org.onap.sdc.common</groupId>
83       <artifactId>onap-configuration-management-api</artifactId>
84       <version>${project.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>javax.servlet</groupId>
88       <artifactId>javax.servlet-api</artifactId>
89       <scope>provided</scope>
90     </dependency>
91     <dependency>
92       <groupId>com.fasterxml.jackson.core</groupId>
93       <artifactId>jackson-annotations</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.slf4j</groupId>
97       <artifactId>slf4j-api</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>ch.qos.logback</groupId>
101       <artifactId>logback-classic</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.openecomp.sdc</groupId>
106       <artifactId>openecomp-sdc-logging-api</artifactId>
107       <version>${project.version}</version>
108       <scope>compile</scope>
109     </dependency>
110   </dependencies>
111
112   <build>
113     <plugins>
114       <plugin>
115         <groupId>org.apache.maven.plugins</groupId>
116         <artifactId>maven-surefire-plugin</artifactId>
117         <configuration>
118           <systemPropertyVariables>
119             <config.location>${project.basedir}/src/test/resources</config.location>
120             <node.config.location>${user.home}/TestResources</node.config.location>
121           </systemPropertyVariables>
122         </configuration>
123       </plugin>
124     </plugins>
125   </build>
126
127 </project>