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-dispatcher-common</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>execution-queue-management-lib</artifactId> |
| 9 | <packaging>bundle</packaging> |
| 10 | |
| 11 | <name>execution-queue-management-lib</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> |
| 20 | <groupId>org.openecomp.appc</groupId> |
| 21 | <artifactId>appc-common</artifactId> |
| 22 | <version>${project.version}</version> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>com.att.eelf</groupId> |
| 26 | <artifactId>eelf-core</artifactId> |
| 27 | </dependency> |
| 28 | </dependencies> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame^] | 29 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.felix</groupId> |
| 34 | <artifactId>maven-bundle-plugin</artifactId> |
| 35 | <configuration> |
| 36 | <instructions> |
| 37 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 38 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 39 | <Embed-Transitive>true</Embed-Transitive> |
| 40 | <Export-Package>org.openecomp.appc.executionqueue,org.openecomp.appc.executionqueue.impl</Export-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame^] | 41 | <Import-Package> |
| 42 | *;resolution:=optional |
| 43 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 44 | </instructions> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | </project> |