Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.openecomp.appc</groupId> |
| 6 | <artifactId>appc-dg-shared</artifactId> |
Patrick Brady | 03682da | 2017-03-10 13:07:19 -0800 | [diff] [blame] | 7 | <version>1.1.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>appc-dg-license-manager</artifactId> |
| 10 | <packaging>bundle</packaging> |
| 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>org.openecomp.appc</groupId> |
| 15 | <artifactId>appc-dg-common</artifactId> |
| 16 | <version>${project.version}</version> |
| 17 | <scope>compile</scope> |
| 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>org.openecomp.appc</groupId> |
| 21 | <artifactId>appc-license-manager-api</artifactId> |
Patrick Brady | 03682da | 2017-03-10 13:07:19 -0800 | [diff] [blame] | 22 | <version>1.1.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 23 | <scope>compile</scope> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.openecomp.sdnc.core</groupId> |
| 27 | <artifactId>sli-common</artifactId> |
| 28 | <scope>compile</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.openecomp.sdnc.core</groupId> |
| 32 | <artifactId>sli-provider</artifactId> |
| 33 | <scope>compile</scope> |
| 34 | </dependency> |
| 35 | </dependencies> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
| 42 | <extensions>true</extensions> |
| 43 | <configuration> |
| 44 | <instructions> |
| 45 | <Bundle-SymbolicName>appc-dg-license-manager</Bundle-SymbolicName> |
| 46 | <Export-Package>org.openecomp.appc.dg.licmgr</Export-Package> |
| 47 | <Export-Service>org.openecomp.appc.dg.licmgr.LicenseManagerPlugin</Export-Service> |
| 48 | <Private-Package>org.openecomp.appc.dg.licmgr.impl</Private-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame^] | 49 | <Import-Package> |
| 50 | org.openecomp.appc.licmgr,org.openecomp.appc.licmgr.exception,org.openecomp.appc.licmgr.objects, |
| 51 | org.openecomp.appc.exceptions, com.att.eelf.configuration, |
| 52 | *;resolution:=optional |
| 53 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 54 | </instructions> |
| 55 | </configuration> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | </project> |