Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <groupId>org.openecomp.appc</groupId> |
| 5 | <artifactId>appc-license-manager</artifactId> |
Patrick Brady | 03682da | 2017-03-10 13:07:19 -0800 | [diff] [blame] | 6 | <version>1.1.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 7 | </parent> |
| 8 | <artifactId>appc-license-manager-api</artifactId> |
| 9 | <packaging>bundle</packaging> |
| 10 | |
| 11 | <name>appc-license-manager-api</name> |
| 12 | <url>http://maven.apache.org</url> |
| 13 | |
| 14 | <properties> |
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | </properties> |
| 17 | |
| 18 | <dependencies> |
| 19 | <dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 20 | <groupId>org.openecomp.sdnc.core</groupId> |
| 21 | <artifactId>dblib-provider</artifactId> |
| 22 | </dependency> |
| 23 | </dependencies> |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.felix</groupId> |
| 28 | <artifactId>maven-bundle-plugin</artifactId> |
| 29 | <configuration> |
| 30 | <instructions> |
| 31 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 32 | <Bundle-Version>${project.version}</Bundle-Version> |
| 33 | <Export-Package>org.openecomp.appc.licmgr,org.openecomp.appc.licmgr.exception,org.openecomp.appc.licmgr.objects</Export-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | </instructions> |
| 35 | </configuration> |
| 36 | </plugin> |
| 37 | </plugins> |
| 38 | </build> |
| 39 | </project> |