Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 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) | 9560e60 | 2019-04-24 16:04:56 -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 | |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 17 | |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 18 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 19 | <artifactId>sdnr-wt-helpserver-provider</artifactId> |
Timoney, Dan (dt5972) | bc48337 | 2019-09-11 10:58:56 -0400 | [diff] [blame] | 20 | <version>0.7.0-SNAPSHOT</version> |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 21 | <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name> |
| 22 | <packaging>bundle</packaging> |
| 23 | <properties> |
| 24 | <checkstyle.skip>true</checkstyle.skip> |
| 25 | </properties> |
| 26 | <parent> |
| 27 | <groupId>org.onap.ccsdk.parent</groupId> |
| 28 | <artifactId>binding-parent</artifactId> |
Timoney, Dan (dt5972) | dc10cbe | 2019-12-02 12:37:02 -0500 | [diff] [blame] | 29 | <version>1.5.1-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 9560e60 | 2019-04-24 16:04:56 -0400 | [diff] [blame] | 30 | <relativePath/> |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 31 | </parent> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>javax.servlet</groupId> |
| 35 | <artifactId>servlet-api</artifactId> |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.slf4j</groupId> |
| 39 | <artifactId>slf4j-simple</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.json</groupId> |
| 43 | <artifactId>json</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.osgi</groupId> |
| 47 | <artifactId>org.osgi.core</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>org.osgi.compendium</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.mockito</groupId> |
| 55 | <artifactId>mockito-core</artifactId> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 58 | |
Herbert Eiselt | e26f1bf | 2019-03-29 10:53:28 +0100 | [diff] [blame] | 59 | </dependencies> |
| 60 | <build> |
| 61 | <plugins> |
| 62 | <!-- fixed bug for sonarcube --> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-surefire-plugin</artifactId> |
| 66 | <configuration> |
| 67 | <useSystemClassLoader>false</useSystemClassLoader> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </build> |
Herbert Eiselt | 8d39a39 | 2019-01-30 09:45:54 +0100 | [diff] [blame] | 72 | </project> |