blob: a680f6599440aff6d79533ffddf0e8240dc42363 [file] [log] [blame]
Anand36bcd562018-01-04 19:35:51 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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
Patrick Brady57b5eef2017-02-10 15:00:49 -080015
Anand36bcd562018-01-04 19:35:51 -050016 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.
Patrick Brady57b5eef2017-02-10 15:00:49 -080021
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">
27 <modelVersion>4.0.0</modelVersion>
28 <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 <artifactId>appc-license-manager-api</artifactId>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070035 <groupId>org.onap.appc</groupId>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -070036 <version>1.6.0-SNAPSHOT</version>
Anand36bcd562018-01-04 19:35:51 -050037 <name>APPC License Manager - API</name>
38 <packaging>bundle</packaging>
39 <url>http://maven.apache.org</url>
40
41 <properties>
42 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onap.ccsdk.sli.core</groupId>
48 <artifactId>dblib-provider</artifactId>
49 </dependency>
amshegokarfb948b42018-03-14 11:58:16 +053050 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>4.12</version>
54 <scope>test</scope>
55 </dependency>
Anand36bcd562018-01-04 19:35:51 -050056 </dependencies>
Patrick Brady57b5eef2017-02-10 15:00:49 -080057 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 <configuration>
63 <instructions>
64 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
65 <Bundle-Version>${project.version}</Bundle-Version>
Anand36bcd562018-01-04 19:35:51 -050066 <Export-Package>
67 org.onap.appc.licmgr,
68 org.onap.appc.licmgr.exception,
69 org.onap.appc.licmgr.objects
70 </Export-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080071 </instructions>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
76</project>