blob: 6d4d93239355ae7ba167070c697fac70c780beb3 [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>
Dan Timoneyc4b09e52017-09-11 11:19:51 -04007 <version>0.1.2-SNAPSHOT</version>
Dan Timoney2a93b9d2017-07-18 19:40:01 -04008 </parent>
9 <artifactId>dblib-provider</artifactId>
Dan Timoneyc4b09e52017-09-11 11:19:51 -040010 <version>0.1.2-SNAPSHOT</version>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040011 <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>
Dan Timoney2c60d262017-09-18 14:56:39 -040045 <dependency>
46 <groupId>org.mariadb.jdbc</groupId>
47 <artifactId>mariadb-java-client</artifactId>
48 <version>${mariadb.connector.version}</version>
49 </dependency>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040050 <dependency>
51 <groupId>org.apache.tomcat</groupId>
52 <artifactId>tomcat-jdbc</artifactId>
53 <version>${tomcat-jdbc.version}</version>
54 </dependency>
Ryan Gouldingaf22e3d2017-08-17 16:15:39 -040055 <dependency>
56 <groupId>com.google.guava</groupId>
57 <artifactId>guava</artifactId>
58 </dependency>
Ryan Goulding03235aa2017-09-19 11:14:41 -040059 <dependency>
60 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney37d64682017-09-21 16:07:02 -040061 <artifactId>utils-provider</artifactId>
Ryan Goulding03235aa2017-09-19 11:14:41 -040062 <version>${project.version}</version>
63 </dependency>
Ryan Gouldingaf22e3d2017-08-17 16:15:39 -040064
65 <!-- Testing related dependencies -->
66 <dependency>
67 <groupId>org.mockito</groupId>
68 <artifactId>mockito-core</artifactId>
69 <scope>test</scope>
70 </dependency>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040071 </dependencies>
72
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-bundle-plugin</artifactId>
78 <version>${bundle.plugin.version}</version>
79 <extensions>true</extensions>
80 <configuration>
81 <instructions>
Dan Timoney32f16142017-07-27 16:32:20 -040082 <Bundle-SymbolicName>org.onap.ccsdk.sli.core.dblib</Bundle-SymbolicName>
Dan Timoney32f16142017-07-27 16:32:20 -040083 <Export-Package>org.onap.ccsdk.sli.core.dblib;version=${project.version}</Export-Package>
Dan Timoney2c60d262017-09-18 14:56:39 -040084 <Import-Package>*,org.mariadb.jdbc</Import-Package>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040085 <Embed-Transitive>true</Embed-Transitive>
86 </instructions>
87 </configuration>
88
89 </plugin>
90
91
92 </plugins>
93 </build>
94</project>