]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/modules/org.argeo.server.jdbc/pom.xml
Make node and node factory initialisation synchronous
[lgpl/argeo-commons.git] / server / modules / org.argeo.server.jdbc / 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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons.server</groupId>
5 <version>1.1.5-SNAPSHOT</version>
6 <artifactId>modules</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.server.jdbc</artifactId>
10 <name>Commons Server Spring JDBC Drivers for OSGi</name>
11 <description>Makes commons JDBC drivers visible to Spring JDBC in an OSGi runtime</description>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <Fragment-Host>org.springframework.jdbc</Fragment-Host>
20 <Import-Package>
21 *,
22 com.microsoft.sqlserver.jdbc;resolution:=optional,
23 com.mysql.jdbc;resolution:=optional,
24 net.sourceforge.jtds.jdbc;resolution:=optional,
25 oracle.jdbc;resolution:=optional,
26 org.apache.derby.jdbc;resolution:=optional,
27 org.h2;resolution:=optional,
28 org.hsqldb;resolution:=optional,
29 org.postgresql;resolution:=optional
30 </Import-Package>
31 </instructions>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
36 </project>