| <?xml version="1.0" encoding="UTF-8"?> |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.openecomp.appc</groupId> |
| <artifactId>appc-dg-shared</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| </parent> |
| <artifactId>appc-dg-license-manager</artifactId> |
| <packaging>bundle</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.openecomp.appc</groupId> |
| <artifactId>appc-dg-common</artifactId> |
| <version>${project.version}</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.appc</groupId> |
| <artifactId>appc-license-manager-api</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.sdnc.core</groupId> |
| <artifactId>sli-common</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.openecomp.sdnc.core</groupId> |
| <artifactId>sli-provider</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-SymbolicName>appc-dg-license-manager</Bundle-SymbolicName> |
| <Export-Package>org.openecomp.appc.dg.licmgr</Export-Package> |
| <Export-Service>org.openecomp.appc.dg.licmgr.LicenseManagerPlugin</Export-Service> |
| <Private-Package>org.openecomp.appc.dg.licmgr.impl</Private-Package> |
| <Import-Package> |
| org.openecomp.appc.licmgr,org.openecomp.appc.licmgr.exception,org.openecomp.appc.licmgr.objects, |
| org.openecomp.appc.exceptions, com.att.eelf.configuration, |
| *;resolution:=optional |
| </Import-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |