Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | ================================================================================ |
| 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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 13 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 14 | 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 | |
| 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 29 | <parent> |
| 30 | <groupId>org.onap.appc</groupId> |
| 31 | <artifactId>appc-license-manager</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 32 | <version>1.4.0-SNAPSHOT</version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 33 | </parent> |
| 34 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 35 | <artifactId>appc-license-manager-core</artifactId> |
| 36 | <packaging>bundle</packaging> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 37 | <name>APPC License Manager - Core</name> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 38 | <description>appc-license-manager-core OSGi bundle project.</description> |
| 39 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 40 | <properties> |
| 41 | <licenseDir>${project.parent.parent.parent.basedir}</licenseDir> |
| 42 | </properties> |
| 43 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 44 | <dependencies> |
| 45 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 46 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 47 | <artifactId>appc-common</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 51 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 52 | <artifactId>appc-license-manager-api</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>com.sun.mail</groupId> |
| 57 | <artifactId>javax.mail</artifactId> |
| 58 | <version>1.5.0</version> |
| 59 | </dependency> |
| 60 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 61 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 62 | <artifactId>sli-common</artifactId> |
| 63 | <scope>compile</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 66 | <groupId>junit</groupId> |
| 67 | <artifactId>junit</artifactId> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 71 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 72 | <artifactId>sli-provider</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 75 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 76 | <artifactId>dblib-provider</artifactId> |
| 77 | </dependency> |
| 78 | </dependencies> |
| 79 | |
| 80 | <build> |
| 81 | <plugins> |
| 82 | <plugin> |
| 83 | <groupId>org.apache.felix</groupId> |
| 84 | <artifactId>maven-bundle-plugin</artifactId> |
| 85 | <configuration> |
| 86 | <instructions> |
| 87 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 88 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 89 | <Export-Service>org.onap.appc.licmgr.LicenseManager</Export-Service> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 90 | |
| 91 | <Embed-Dependency> |
| 92 | artifactId=!dblib-provider|slf4j-api|jcl-over-slf4j;scope=compile|runtime;inline=false |
| 93 | </Embed-Dependency> |
| 94 | |
| 95 | <Import-Package> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 96 | org.onap.appc.licmgr,org.onap.appc.licmgr.exception,org.onap.appc.licmgr.objects, |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 97 | *;resolution:=optional |
| 98 | </Import-Package> |
| 99 | |
| 100 | <Embed-Transitive>true</Embed-Transitive> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 101 | </instructions> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | </build> |
| 106 | |
| 107 | </project> |