blob: c5560ab1f3e4f19e976b78d54c239eb60fc8adef [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?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>
7 <version>1.0.0</version>
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>