blob: 11e0ff748fd22dc5d210ac1880c3632da4dce5c8 [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 Timoneyba02fc82017-08-30 16:22:00 -04007 <version>0.1.1-SNAPSHOT</version>
Dan Timoney2a93b9d2017-07-18 19:40:01 -04008 </parent>
9 <artifactId>dblib-provider</artifactId>
Dan Timoneyba02fc82017-08-30 16:22:00 -040010 <version>0.1.1-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>
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>
Ryan Gouldingaf22e3d2017-08-17 16:15:39 -040055 <dependency>
56 <groupId>com.google.guava</groupId>
57 <artifactId>guava</artifactId>
58 </dependency>
59
60 <!-- Testing related dependencies -->
61 <dependency>
62 <groupId>org.mockito</groupId>
63 <artifactId>mockito-core</artifactId>
64 <scope>test</scope>
65 </dependency>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040066 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-bundle-plugin</artifactId>
73 <version>${bundle.plugin.version}</version>
74 <extensions>true</extensions>
75 <configuration>
76 <instructions>
Dan Timoney32f16142017-07-27 16:32:20 -040077 <Bundle-SymbolicName>org.onap.ccsdk.sli.core.dblib</Bundle-SymbolicName>
Dan Timoney32f16142017-07-27 16:32:20 -040078 <Export-Package>org.onap.ccsdk.sli.core.dblib;version=${project.version}</Export-Package>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040079 <Embed-Transitive>true</Embed-Transitive>
80 </instructions>
81 </configuration>
82
83 </plugin>
84
85
86 </plugins>
87 </build>
88</project>