Merge of new rebased code
[appc.git] / appc-dispatcher / appc-dispatcher-common / appc-data-access-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>appc-data-access-lib</artifactId>
9   <packaging>bundle</packaging>
10
11   <name>appc-data-access-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.osgi</groupId>
21             <artifactId>org.osgi.core</artifactId>
22             <scope>provided</scope>
23         </dependency>
24       <dependency>
25           <groupId>org.openecomp.sdnc.core</groupId>
26           <artifactId>sli-common</artifactId>
27           <scope>compile</scope>
28       </dependency>
29       <dependency>
30           <groupId>org.openecomp.sdnc.core</groupId>
31           <artifactId>sli-provider</artifactId>
32           <scope>compile</scope>
33       </dependency>
34       <dependency>
35           <groupId>org.openecomp.appc</groupId>
36           <artifactId>appc-common</artifactId>
37           <version>${project.version}</version>
38       </dependency>
39   </dependencies>
40   <build>
41     <plugins>
42         <plugin>
43             <groupId>org.apache.felix</groupId>
44             <artifactId>maven-bundle-plugin</artifactId>
45             <extensions>true</extensions>
46             <configuration>
47                 <instructions>
48                     <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
49                     <Export-Package>org.openecomp.appc.dao.util</Export-Package>
50                     <Import-Package>org.openecomp.appc.configuration,*;resolution:=optional</Import-Package>
51                     <Embed-Dependency>mysql-connector-java</Embed-Dependency>
52                     <Embed-Transitive>true</Embed-Transitive>
53                 </instructions>
54             </configuration>
55         </plugin>
56     </plugins>
57   </build>
58 </project>