Updating master to 1.1.0-SNAPSHOT
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / pom.xml
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>
6         <version>1.1.0-SNAPSHOT</version>
7     </parent>
8   <artifactId>domain-model-lib</artifactId>
9   <packaging>bundle</packaging>
10
11   <name>domain-model-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     <build>
19         <plugins>
20             <plugin>
21                 <groupId>org.apache.felix</groupId>
22                 <artifactId>maven-bundle-plugin</artifactId>
23                 <configuration>
24                     <instructions>
25                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
26                         <Bundle-Version>${project.version}</Bundle-Version>
27                         <Export-Package>org.openecomp.appc.domainmodel.lcm</Export-Package>
28                         <Embed-Transitive>true</Embed-Transitive>
29
30                     </instructions>
31                 </configuration>
32             </plugin>
33         </plugins>
34     </build>
35
36 </project>