blob: 392ae1a408af8abf91df8e69f484dcad04aa6bbf [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========================================================= -->
Timoney, Dan (dt5972)55e06ff2019-03-14 13:33:50 -040014<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/maven-v4_0_0.xsd">
Herbert Eiselt8d39a392019-01-30 09:45:54 +010015
16 <modelVersion>4.0.0</modelVersion>
17
18 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
19 <artifactId>sdnr-wt-helpserver-provider</artifactId>
Timoney, Dan (dt5972)528f6392019-03-19 18:29:32 -040020 <version>0.4.2-SNAPSHOT</version>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010021 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
22 <packaging>bundle</packaging>
23 <properties>
24 <checkstyle.skip>true</checkstyle.skip>
Herbert Eiseltaf992db2019-02-28 18:15:10 +010025 <buildtime>${maven.build.timestamp} UTC</buildtime>
26 <distversion>ONAP Dublin (Flourine-SR1)</distversion>
27 <buildno>1.15b7491</buildno>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010028 </properties>
29 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)528f6392019-03-19 18:29:32 -040032 <version>1.2.2-SNAPSHOT</version>
Timoney, Dan (dt5972)55e06ff2019-03-14 13:33:50 -040033 <relativePath/>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010034 </parent>
35 <dependencies>
36 <dependency>
37 <groupId>javax.servlet</groupId>
38 <artifactId>servlet-api</artifactId>
39 <version>2.5</version>
40 </dependency>
41 <dependency>
42 <groupId>org.slf4j</groupId>
43 <artifactId>slf4j-simple</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.json</groupId>
47 <artifactId>json</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.osgi</groupId>
51 <artifactId>org.osgi.core</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.osgi</groupId>
55 <artifactId>org.osgi.compendium</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.mockito</groupId>
59 <artifactId>mockito-core</artifactId>
60 <scope>test</scope>
61 </dependency>
62
63 </dependencies>
64 <build>
Herbert Eiseltaf992db2019-02-28 18:15:10 +010065 <resources>
66 <!-- replace properties in about.md -->
67 <resource>
68 <directory>src/main/resources</directory>
69 <filtering>true</filtering>
70 </resource>
71 </resources>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010072 <plugins>
73 <!-- fixed bug for sonarcube -->
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-surefire-plugin</artifactId>
77 <configuration>
78 <useSystemClassLoader>false</useSystemClassLoader>
79 </configuration>
80 </plugin>
81 </plugins>
82 </build>
83</project>