Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 1 | <?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) | 55e06ff | 2019-03-14 13:33:50 -0400 | [diff] [blame] | 14 | <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 Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 15 | |
| 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) | 528f639 | 2019-03-19 18:29:32 -0400 | [diff] [blame] | 20 | <version>0.4.2-SNAPSHOT</version> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 21 | <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name> |
| 22 | <packaging>bundle</packaging> |
| 23 | <properties> |
| 24 | <checkstyle.skip>true</checkstyle.skip> |
Herbert Eiselt | af992db | 2019-02-28 18:15:10 +0100 | [diff] [blame] | 25 | <buildtime>${maven.build.timestamp} UTC</buildtime> |
| 26 | <distversion>ONAP Dublin (Flourine-SR1)</distversion> |
| 27 | <buildno>1.15b7491</buildno> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 28 | </properties> |
| 29 | <parent> |
| 30 | <groupId>org.onap.ccsdk.parent</groupId> |
| 31 | <artifactId>binding-parent</artifactId> |
Timoney, Dan (dt5972) | 528f639 | 2019-03-19 18:29:32 -0400 | [diff] [blame] | 32 | <version>1.2.2-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 55e06ff | 2019-03-14 13:33:50 -0400 | [diff] [blame] | 33 | <relativePath/> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 34 | </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 Eiselt | af992db | 2019-02-28 18:15:10 +0100 | [diff] [blame] | 65 | <resources> |
| 66 | <!-- replace properties in about.md --> |
| 67 | <resource> |
| 68 | <directory>src/main/resources</directory> |
| 69 | <filtering>true</filtering> |
| 70 | </resource> |
| 71 | </resources> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 72 | <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> |