Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. |
| 7 | ============================================================================= |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.appc.parent</groupId> |
| 27 | <artifactId>single-feature-parent</artifactId> |
Patrick Brady | 9d38008 | 2018-10-09 11:32:38 -0700 | [diff] [blame] | 28 | <version>1.4.0</version> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 29 | <relativePath /> |
| 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.appc</groupId> |
| 33 | <artifactId>onap-appc-license-manager</artifactId> |
Patrick Brady | c23c9a0 | 2018-11-19 13:37:50 -0800 | [diff] [blame^] | 34 | <version>1.4.3-SNAPSHOT</version> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 35 | <packaging>feature</packaging> |
| 36 | |
| 37 | <name></name> |
| 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 42 | <artifactId>ccsdk-dblib</artifactId> |
| 43 | <version>${ccsdk.sli.core.version}</version> |
| 44 | <type>xml</type> |
| 45 | <classifier>features</classifier> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onap.appc</groupId> |
| 49 | <artifactId>appc-license-manager-core</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.appc</groupId> |
| 54 | <artifactId>appc-license-manager-api</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>com.sun.mail</groupId> |
| 59 | <artifactId>javax.mail</artifactId> |
| 60 | <version>1.5.0</version> |
| 61 | </dependency> |
| 62 | <!-- <dependency> --> |
| 63 | <!-- <groupId>org.glassfish.jersey.core</groupId> --> |
| 64 | <!-- <artifactId>jersey-server</artifactId> --> |
| 65 | <!-- <version>2.22.1</version> --> |
| 66 | <!-- </dependency> --> |
| 67 | <!-- <dependency> --> |
| 68 | <!-- <groupId>com.fasterxml.jackson.jaxrs</groupId> --> |
| 69 | <!-- <artifactId>jackson-jaxrs-base</artifactId> --> |
| 70 | <!-- <version>2.5.4</version> --> |
| 71 | <!-- </dependency> --> |
| 72 | <!-- <dependency> --> |
| 73 | <!-- <groupId>com.fasterxml.jackson.jaxrs</groupId> --> |
| 74 | <!-- <artifactId>jackson-jaxrs-json-provider</artifactId> --> |
| 75 | <!-- <version>2.5.4</version> --> |
| 76 | <!-- </dependency> --> |
| 77 | <!-- <dependency> --> |
| 78 | <!-- <groupId>org.apache.httpcomponents</groupId> --> |
| 79 | <!-- <artifactId>httpclient-osgi</artifactId> --> |
| 80 | <!-- <version>4.5.3</version> --> |
| 81 | <!-- </dependency> --> |
| 82 | <!-- <dependency> --> |
| 83 | <!-- <groupId>org.apache.httpcomponents</groupId> --> |
| 84 | <!-- <artifactId>httpcore-osgi</artifactId> --> |
| 85 | <!-- <version>4.4</version> --> |
| 86 | <!-- </dependency> --> |
| 87 | </dependencies> |
| 88 | |
| 89 | <build> |
| 90 | <plugins> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.karaf.tooling</groupId> |
| 93 | <artifactId>karaf-maven-plugin</artifactId> |
| 94 | <extensions>true</extensions> |
| 95 | <configuration> |
| 96 | <includeTransitiveDependency>false</includeTransitiveDependency> |
| 97 | <excludedArtifactIds> |
| 98 | <excludedArtifactId>slf4j-api</excludedArtifactId> |
| 99 | <excludedArtifactId>tomcat-jdbc</excludedArtifactId> |
| 100 | <excludedArtifactId>tomcat-juli</excludedArtifactId> |
| 101 | <excludedArtifactId>httpcore</excludedArtifactId> |
| 102 | <excludedArtifactId>httpclient</excludedArtifactId> |
| 103 | <excludedArtifactId>org.eclipse.osgi</excludedArtifactId> |
| 104 | |
| 105 | </excludedArtifactIds> |
| 106 | </configuration> |
| 107 | </plugin> |
| 108 | </plugins> |
| 109 | </build> |
| 110 | </project> |