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 | <artifactId>lock-manager-lib</artifactId> |
| 6 | <groupId>org.openecomp.appc</groupId> |
Patrick Brady | 8843969 | 2017-02-24 00:04:10 -0800 | [diff] [blame^] | 7 | <version>1.0.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 8 | </parent> |
| 9 | |
| 10 | <artifactId>lock-manager-api</artifactId> |
| 11 | <packaging>bundle</packaging> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.felix</groupId> |
| 17 | <artifactId>maven-bundle-plugin</artifactId> |
| 18 | <extensions>true</extensions> |
| 19 | <configuration> |
| 20 | <instructions> |
| 21 | <Export-Package>org.openecomp.appc.lockmanager.api</Export-Package> |
| 22 | </instructions> |
| 23 | </configuration> |
| 24 | </plugin> |
| 25 | </plugins> |
| 26 | </build> |
| 27 | </project> |