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