Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / helpserver / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
7   ~ All rights reserved.
8   ~ ================================================================================
9   ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10   ~ ================================================================================
11   ~ Licensed under the Apache License, Version 2.0 (the "License");
12   ~ you may not use this file except in compliance with the License.
13   ~ You may obtain a copy of the License at
14   ~
15   ~     http://www.apache.org/licenses/LICENSE-2.0
16   ~
17   ~ Unless required by applicable law or agreed to in writing, software
18   ~ distributed under the License is distributed on an "AS IS" BASIS,
19   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   ~ See the License for the specific language governing permissions and
21   ~ limitations under the License.
22   ~ ============LICENSE_END=======================================================
23   ~
24   -->
25
26 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27         <modelVersion>4.0.0</modelVersion>
28
29         <groupId>org.onap.ccsdk.features.sdnr.odlux</groupId>
30         <artifactId>sdnr-odlux-helpserver-provider</artifactId>
31         <version>1.7.0-SNAPSHOT</version>
32         <packaging>jar</packaging>
33
34         <name>SDNR ODLUX :: ${project.artifactId}</name>
35
36         <properties>
37                 <maven.javadoc.skip>true</maven.javadoc.skip>
38                 <maven.compiler.source>1.8</maven.compiler.source>
39                 <maven.compiler.target>1.8</maven.compiler.target>
40                 <log4j.version>2.17.1</log4j.version>
41                 <log4j2.version>2.17.1</log4j2.version>
42                 <junit.version>4.13.2</junit.version>
43         </properties>
44
45         <dependencies>
46                 <dependency>
47                         <groupId>jakarta.servlet</groupId>
48                         <artifactId>jakarta.servlet-api</artifactId>
49                         <version>4.0.4</version>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.json</groupId>
53                         <artifactId>json</artifactId>
54                         <version>20201115</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>org.slf4j</groupId>
58                         <artifactId>slf4j-log4j12</artifactId>
59                         <version>1.7.29</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>org.mockito</groupId>
63                         <artifactId>mockito-core</artifactId>
64                         <version>3.5.11</version>
65                         <scope>test</scope>
66                 </dependency>
67                 <dependency>
68                         <groupId>junit</groupId>
69                         <artifactId>junit</artifactId>
70                         <version>4.13.2</version>
71                         <scope>test</scope>
72                 </dependency>
73
74         </dependencies>
75
76         <build>
77                 <plugins>
78                         <!-- fixed bug for sonarcube -->
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-surefire-plugin</artifactId>
82                                 <configuration>
83                                         <useSystemClassLoader>false</useSystemClassLoader>
84                                 </configuration>
85                         </plugin>
86                 </plugins>
87         </build>
88 </project>