blob: 09b699f00a3e7d78848a60b6a4845a288abf1993 [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>
29 <groupId>org.onap.appc</groupId>
30 <artifactId>appc-license-manager</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070031 <version>1.4.0-SNAPSHOT</version>
Anand36bcd562018-01-04 19:35:51 -050032 </parent>
33
Patrick Brady57b5eef2017-02-10 15:00:49 -080034 <artifactId>appc-license-manager-core</artifactId>
35 <packaging>bundle</packaging>
Anand36bcd562018-01-04 19:35:51 -050036 <name>APPC License Manager - Core</name>
Patrick Brady57b5eef2017-02-10 15:00:49 -080037 <description>appc-license-manager-core OSGi bundle project.</description>
38
Anand36bcd562018-01-04 19:35:51 -050039 <properties>
40 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
41 </properties>
42
Patrick Brady57b5eef2017-02-10 15:00:49 -080043 <dependencies>
44 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080045 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080046 <artifactId>appc-common</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080050 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080051 <artifactId>appc-license-manager-api</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>com.sun.mail</groupId>
56 <artifactId>javax.mail</artifactId>
57 <version>1.5.0</version>
58 </dependency>
59 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070060 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080061 <artifactId>sli-common</artifactId>
62 <scope>compile</scope>
63 </dependency>
64 <dependency>
Anand36bcd562018-01-04 19:35:51 -050065 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
Joanna Jeremicze1ef04e2018-06-21 14:13:06 +020070 <groupId>org.assertj</groupId>
71 <artifactId>assertj-core</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070075 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080076 <artifactId>sli-provider</artifactId>
77 </dependency>
78 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070079 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080080 <artifactId>dblib-provider</artifactId>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-bundle-plugin</artifactId>
89 <configuration>
90 <instructions>
91 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
92 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady07567592017-12-13 11:09:30 -080093 <Export-Service>org.onap.appc.licmgr.LicenseManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -070094
95 <Embed-Dependency>
96 artifactId=!dblib-provider|slf4j-api|jcl-over-slf4j;scope=compile|runtime;inline=false
97 </Embed-Dependency>
98
99 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -0800100 org.onap.appc.licmgr,org.onap.appc.licmgr.exception,org.onap.appc.licmgr.objects,
Patrick Bradyc7d00752017-06-01 10:45:37 -0700101 *;resolution:=optional
102 </Import-Package>
103
104 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800105 </instructions>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
110
111</project>