datasource-derby-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.chameleon.database</groupId> <artifactId>datasource-derby-client</artifactId> <version>0.2.0</version> </dependency>
<!-- Copyright 2009 OW2 Chameleon Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <parent> <artifactId>parent-pom</artifactId> <groupId>org.ow2.chameleon</groupId> <version>0.2.2</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.ow2.chameleon.database</groupId> <artifactId>datasource-derby-client</artifactId> <packaging>bundle</packaging> <name>OW2 Chameleon Derby-Client DataSourceFactory</name> <version>0.2.0</version> <description> This bundle provides the Derby-Client classes, exposes the DataSourceFactory service and the Connection Factory Service. </description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Private-Package> org.ow2.chameleon.derby.client </Private-Package> <Import-Package> javax.crypto, javax.crypto.interfaces, javax.crypto.spec, javax.naming, javax.naming.spi, javax.net, javax.net.ssl, javax.sql, javax.transaction.xa, javax.management, javax.naming.directory, javax.xml.parsers, javax.xml.transform, org.apache.derby.impl.drda;resolution:=optional, org.apache.xalan.serialize;resolution:=optional, org.apache.xalan.templates;resolution:=optional, org.apache.xml.utils;resolution:=optional, org.apache.xpath;resolution:=optional, org.apache.xpath.objects;resolution:=optional, org.osgi.framework;version=1.4, org.w3c.dom, org.xml.sax, javax.security.auth, org.osgi.service.jdbc, org.ow2.chameleon.database.connection </Import-Package> <Export-Package> org.apache.derby*;version="10.5", org.osgi.service.jdbc </Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-ipojo-plugin</artifactId> <version>1.4.2</version> <executions> <execution> <goals> <goal>ipojo-bundle</goal> </goals> <configuration> <ignoreAnnotations>true</ignoreAnnotations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.0.0</version> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.5.3.0_1</version> </dependency> <dependency> <groupId>org.ow2.chameleon</groupId> <artifactId>org.osgi.service.datasource</artifactId> <version>0.2.0</version> </dependency> <dependency> <groupId>org.ow2.chameleon</groupId> <artifactId>connection-factory-service</artifactId> <version>0.2.0</version> </dependency> <!-- Test scoped dependency to Derby server in order to start and stop a serber during tests. We use an older version of derby due to issues with current derbynet and maven. --> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.2.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbynet</artifactId> <version>10.2.2.0</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/datasource-derby-client-0.2.0</connection> <developerConnection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/datasource-derby-client-0.2.0</developerConnection> <url>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/datasource-derby-client-0.2.0</url> </scm> </project>