blob: d91981d6ed7705db2a82abdf23b659408e75896f [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Anand36bcd562018-01-04 19:35:51 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClung694852f2018-06-13 16:10:33 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Anand36bcd562018-01-04 19:35:51 -05007 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
Patrick Brady57b5eef2017-02-10 15:00:49 -080013
Anand36bcd562018-01-04 19:35:51 -050014 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
Anand36bcd562018-01-04 19:35:51 -050022 ============LICENSE_END=========================================================
23 -->
24<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Patrick Brady57b5eef2017-02-10 15:00:49 -080027 <modelVersion>4.0.0</modelVersion>
Anand36bcd562018-01-04 19:35:51 -050028 <parent>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070029 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080031 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070032 <relativePath />
Anand36bcd562018-01-04 19:35:51 -050033 </parent>
34
Patrick Brady57b5eef2017-02-10 15:00:49 -080035 <artifactId>appc-license-manager-core</artifactId>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070036 <groupId>org.onap.appc</groupId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080037 <version>1.5.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080038 <packaging>bundle</packaging>
Anand36bcd562018-01-04 19:35:51 -050039 <name>APPC License Manager - Core</name>
Patrick Brady57b5eef2017-02-10 15:00:49 -080040 <description>appc-license-manager-core OSGi bundle project.</description>
41
Anand36bcd562018-01-04 19:35:51 -050042 <properties>
43 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
44 </properties>
45
Patrick Brady57b5eef2017-02-10 15:00:49 -080046 <dependencies>
47 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080048 <groupId>org.onap.appc</groupId>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070049 <artifactId>appc-common-bundle</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080050 <version>${project.version}</version>
Taka Cho52cf1a82019-03-13 14:40:15 -040051 <exclusions>
52 <exclusion>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-databind</artifactId>
55 </exclusion>
56 </exclusions>
Patrick Brady57b5eef2017-02-10 15:00:49 -080057 </dependency>
58 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080059 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080060 <artifactId>appc-license-manager-api</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>com.sun.mail</groupId>
65 <artifactId>javax.mail</artifactId>
66 <version>1.5.0</version>
67 </dependency>
68 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070069 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080070 <artifactId>sli-common</artifactId>
71 <scope>compile</scope>
72 </dependency>
73 <dependency>
Anand36bcd562018-01-04 19:35:51 -050074 <groupId>junit</groupId>
75 <artifactId>junit</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
Joanna Jeremicze1ef04e2018-06-21 14:13:06 +020079 <groupId>org.assertj</groupId>
80 <artifactId>assertj-core</artifactId>
81 <scope>test</scope>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070082 <version>${assertj.version}</version>
Joanna Jeremicze1ef04e2018-06-21 14:13:06 +020083 </dependency>
84 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070085 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080086 <artifactId>sli-provider</artifactId>
87 </dependency>
88 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070089 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080090 <artifactId>dblib-provider</artifactId>
Patrick Brady606d4e72018-08-08 10:25:15 -070091 <scope>provided</scope>
Patrick Brady57b5eef2017-02-10 15:00:49 -080092 </dependency>
Taka Cho52cf1a82019-03-13 14:40:15 -040093 <dependency>
94 <groupId>com.fasterxml.jackson.core</groupId>
95 <artifactId>jackson-databind</artifactId>
96 <version>2.8.11.3</version>
97 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080098 </dependencies>
99
100 <build>
101 <plugins>
102 <plugin>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-bundle-plugin</artifactId>
105 <configuration>
106 <instructions>
107 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
108 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady07567592017-12-13 11:09:30 -0800109 <Export-Service>org.onap.appc.licmgr.LicenseManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700110
111 <Embed-Dependency>
112 artifactId=!dblib-provider|slf4j-api|jcl-over-slf4j;scope=compile|runtime;inline=false
113 </Embed-Dependency>
114
115 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -0800116 org.onap.appc.licmgr,org.onap.appc.licmgr.exception,org.onap.appc.licmgr.objects,
Patrick Bradyc7d00752017-06-01 10:45:37 -0700117 *;resolution:=optional
118 </Import-Package>
Patrick Brady606d4e72018-08-08 10:25:15 -0700119 <_removeheaders>Import-Service</_removeheaders>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700120
121 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800122 </instructions>
123 </configuration>
124 </plugin>
125 </plugins>
126 </build>
127
128</project>