datasource-sqlite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.chameleon.database</groupId> <artifactId>datasource-sqlite</artifactId> <version>0.1.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-sqlite</artifactId> <packaging>bundle</packaging> <name>OW2 Chameleon SQLite DataSourceFactory</name> <version>0.1.0</version> <description> This bundle provides the SQLiteJDBC classes, exposes the DataSourceFactory service and the Connection Factory Service. </description> <build> <plugins> <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.sqlite, org.ibex.nestedvm </Private-Package> <Import-Package> javax.sql;resolution:=optional, org.sqlite;version="3.7";resolution:=optional, org.osgi.service.jdbc, org.ow2.chameleon.database.connection, !org.ibex.classgen </Import-Package> <Export-Package> org.sqlite;version="3.7", org.osgi.service.jdbc </Export-Package> <Embed-Dependency>*;artifactId=sqlite-jdbc;inline=true</Embed-Dependency> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-ipojo-plugin</artifactId> <version>1.6.0</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.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> <version>3.7.2</version> <type>jar</type> <scope>compile</scope> </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> </dependencies> <scm> <connection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/datasource-sqlite-0.1.0</connection> <developerConnection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/datasource-sqlite-0.1.0</developerConnection> <url>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/chameleon/releases/datasource-sqlite-0.1.0</url> </scm> </project>