blob: 72ec0460d079e96706b71d981bd84da27f27f354 [file] [log] [blame]
Herbert Eiselt8d39a392019-01-30 09:45:54 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!-- * ============LICENSE_START=======================================================
3 * ONAP : CCSDK.sdnr.wt.apigateway.provider * ================================================================================
4 * Copyright (C) 2018 highstreet technologies GmbH Intellectual Property.
5 * All rights reserved. * ================================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License"); * you may
7 not use this file except in compliance with the License. * You may obtain
8 a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *
9 * Unless required by applicable law or agreed to in writing, software * distributed
10 under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES
11 OR CONDITIONS OF ANY KIND, either express or implied. * See the License for
12 the specific language governing permissions and * limitations under the License.
13 * ============LICENSE_END========================================================= -->
14<project xmlns="http://maven.apache.org/POM/4.0.0"
15 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
17
18 <modelVersion>4.0.0</modelVersion>
19
20 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
21 <artifactId>sdnr-wt-helpserver-provider</artifactId>
22 <version>0.4.1-SNAPSHOT</version>
23 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
24 <packaging>bundle</packaging>
25 <properties>
26 <checkstyle.skip>true</checkstyle.skip>
Herbert Eiseltaf992db2019-02-28 18:15:10 +010027 <buildtime>${maven.build.timestamp} UTC</buildtime>
28 <distversion>ONAP Dublin (Flourine-SR1)</distversion>
29 <buildno>1.15b7491</buildno>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010030 </properties>
31 <parent>
32 <groupId>org.onap.ccsdk.parent</groupId>
33 <artifactId>binding-parent</artifactId>
34 <version>1.2.1-SNAPSHOT</version>
35 <relativePath />
36 </parent>
37 <dependencies>
38 <dependency>
39 <groupId>javax.servlet</groupId>
40 <artifactId>servlet-api</artifactId>
41 <version>2.5</version>
42 </dependency>
43 <dependency>
44 <groupId>org.slf4j</groupId>
45 <artifactId>slf4j-simple</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.json</groupId>
49 <artifactId>json</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.core</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.osgi</groupId>
57 <artifactId>org.osgi.compendium</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.mockito</groupId>
61 <artifactId>mockito-core</artifactId>
62 <scope>test</scope>
63 </dependency>
64
65 </dependencies>
66 <build>
Herbert Eiseltaf992db2019-02-28 18:15:10 +010067 <resources>
68 <!-- replace properties in about.md -->
69 <resource>
70 <directory>src/main/resources</directory>
71 <filtering>true</filtering>
72 </resource>
73 </resources>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010074 <plugins>
75 <!-- fixed bug for sonarcube -->
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-surefire-plugin</artifactId>
79 <configuration>
80 <useSystemClassLoader>false</useSystemClassLoader>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
85</project>