blob: 078c75499bc18849ae64bea298b9f574a0a464bb [file] [log] [blame]
Dan Timoney2a93b9d2017-07-18 19:40:01 -04001<?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>
Dan Timoneyc95543b2017-07-21 10:45:06 -04005 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney2a93b9d2017-07-18 19:40:01 -04006 <artifactId>dblib</artifactId>
7 <version>0.0.1-SNAPSHOT</version>
8 </parent>
9 <artifactId>dblib-provider</artifactId>
10 <version>0.0.1-SNAPSHOT</version>
11 <packaging>bundle</packaging>
12 <name>DBLIB Adaptor - Provider</name>
13 <url>http://maven.apache.org</url>
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17 <dependencies>
18 <dependency>
19 <groupId>junit</groupId>
20 <artifactId>junit</artifactId>
21 <version>4.11</version>
22 <scope>test</scope>
23 </dependency>
24 <dependency>
25 <groupId>equinoxSDK381</groupId>
26 <artifactId>org.eclipse.osgi</artifactId>
27 <version>${equinox.osgi.version}</version>
28 </dependency>
29 <dependency>
30 <groupId>org.slf4j</groupId>
31 <artifactId>slf4j-api</artifactId>
32 <version>${slf4j.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.slf4j</groupId>
36 <artifactId>jcl-over-slf4j</artifactId>
37 <version>${slf4j.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.slf4j</groupId>
41 <artifactId>slf4j-simple</artifactId>
42 <version>${slf4j.version}</version>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
46 <groupId>mysql</groupId>
47 <artifactId>mysql-connector-java</artifactId>
48 <version>${mysql.connector.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.tomcat</groupId>
52 <artifactId>tomcat-jdbc</artifactId>
53 <version>${tomcat-jdbc.version}</version>
54 </dependency>
55 </dependencies>
56
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 <version>${bundle.plugin.version}</version>
63 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Bundle-SymbolicName>org.openecomp.sdnc.sli.resource.dblib</Bundle-SymbolicName>
67 <Bundle-Activator>org.openecomp.sdnc.sli.resource.dblib.DBLIBResourceActivator</Bundle-Activator>
68 <Export-Package>org.openecomp.sdnc.sli.resource.dblib;version=${project.version}</Export-Package>
69 <!--
70 <Import-Package>org.openecomp.sdnc.sli.*,org.osgi.framework.*,org.slf4j.*,com.mysql.jdbc.*,javax.sql.*,org.apache.tomcat.*</Import-Package>
71 -->
72 <Import-Package>*</Import-Package>
73 <Embed-Transitive>true</Embed-Transitive>
74 </instructions>
75 </configuration>
76
77 </plugin>
78
79
80 </plugins>
81 </build>
82</project>