Herbert Eiselt | ac33bcd | 2019-01-25 14:50:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Herbert Eiselt | 46b1c76 | 2019-02-28 19:12:14 +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) | 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 | ac33bcd | 2019-01-25 14:50:52 +0100 | [diff] [blame] | 15 | |
Herbert Eiselt | 46b1c76 | 2019-02-28 19:12:14 +0100 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
Herbert Eiselt | ac33bcd | 2019-01-25 14:50:52 +0100 | [diff] [blame] | 17 | |
Herbert Eiselt | 46b1c76 | 2019-02-28 19:12:14 +0100 | [diff] [blame] | 18 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 19 | <artifactId>sdnr-wt-apigateway-provider</artifactId> |
| 20 | <version>0.4.1-SNAPSHOT</version> |
| 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) | 55e06ff | 2019-03-14 13:33:50 -0400 | [diff] [blame^] | 29 | <version>1.2.1</version> |
| 30 | <relativePath/> |
Herbert Eiselt | 46b1c76 | 2019-02-28 19:12:14 +0100 | [diff] [blame] | 31 | </parent> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>javax.servlet</groupId> |
| 35 | <artifactId>servlet-api</artifactId> |
| 36 | <version>2.5</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.slf4j</groupId> |
| 40 | <artifactId>slf4j-simple</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.json</groupId> |
| 44 | <artifactId>json</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.mockito</groupId> |
| 48 | <artifactId>mockito-core</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
Herbert Eiselt | ac33bcd | 2019-01-25 14:50:52 +0100 | [diff] [blame] | 51 | |
Herbert Eiselt | 46b1c76 | 2019-02-28 19:12:14 +0100 | [diff] [blame] | 52 | </dependencies> |
| 53 | <build> |
| 54 | <plugins> |
| 55 | <!-- fixed bug for sonarcube --> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.maven.plugins</groupId> |
| 58 | <artifactId>maven-surefire-plugin</artifactId> |
| 59 | <configuration> |
| 60 | <useSystemClassLoader>false</useSystemClassLoader> |
| 61 | </configuration> |
| 62 | </plugin> |
| 63 | </plugins> |
| 64 | </build> |
Herbert Eiselt | ac33bcd | 2019-01-25 14:50:52 +0100 | [diff] [blame] | 65 | </project> |