组织ID: |
org.xerial |
项目ID: |
sqlite-jdbc |
版本: |
3.6.4 |
最后修改时间: |
2019-10-23 11:24:24 |
包类型: |
jar |
标题: |
SQLite JDBC |
描述: |
SQLite JDBC library |
大小: |
1.99MB |
|
Maven引入代码: |
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.6.4</version>
</dependency>
|
Gradle引入代码: |
org.xerial:sqlite-jdbc:3.6.4
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.6.4</version>
<name>SQLite JDBC</name>
<description>SQLite JDBC library</description>
<parent>
<groupId>org.xerial</groupId>
<artifactId>xerial-project</artifactId>
<version>1.1</version>
</parent>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>native/**</include>
<include>org/**</include>
</includes>
</resource>
<resource>
<directory>${basedir}</directory>
<includes>
<include>VERSION</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>
-Xbootclasspath/p:${basedir}/lib/jdbc-api-1.4.jar
</compilerArgument>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependency</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.xerial.thirdparty</groupId>
<artifactId>nestedvm</artifactId>
<version>1.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
<outputDirectory>target/classes</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.xerial.thirdparty</groupId>
<artifactId>nestedvm</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.xerial.thirdparty</groupId>
<artifactId>jdbc-api</artifactId>
<version>1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>xerial-core</artifactId>
<version>0.8.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
native/Linux/amd64/libsqlitejdbc.so
native/Linux/i386/libsqlitejdbc.so
native/Mac/i386/libsqlitejdbc.jnilib
native/Windows/x86/sqlitejdbc.dll
org.sqlite.Codes.class
org/sqlite/Codes.java
org.sqlite.Conn.class
org/sqlite/Conn.java
org.sqlite.DB.class
org/sqlite/DB.java
org.sqlite.Function$Aggregate.class
org.sqlite.Function.class
org/sqlite/Function.java
org.sqlite.JDBC.class
org/sqlite/JDBC.java
org.sqlite.MetaData.class
org/sqlite/MetaData.java
org/sqlite/NativeDB.c
org.sqlite.NativeDB.class
org/sqlite/NativeDB.java
org.sqlite.NestedDB$CausedSQLException.class
org/sqlite/NestedDB.c
org.sqlite.NestedDB.class
org/sqlite/NestedDB.java
org.sqlite.PrepStmt.class
org/sqlite/PrepStmt.java
org.sqlite.RS.class
org/sqlite/RS.java
org.sqlite.SQLite.class
org.sqlite.Stmt.class
org/sqlite/Stmt.java
org.sqlite.Unused.class
org/sqlite/Unused.java
org.xerial.db.sql.sqlite.OSInfo.class
org/xerial/db/sql/sqlite/OSInfo.java
org.xerial.db.sql.sqlite.SQLiteJDBCLoader.class
org/xerial/db/sql/sqlite/SQLiteJDBCLoader.java
VERSION
META-INF/maven/org.xerial/sqlite-jdbc/pom.xml
META-INF/maven/org.xerial/sqlite-jdbc/pom.properties
|
依赖Jar: |
nestedvm-1.0.jar
/org.xerial.thirdparty/nestedvm/1.0
查看nestedvm所有版本文件
jdbc-api-1.4.jar
/org.xerial.thirdparty/jdbc-api/1.4
查看jdbc-api所有版本文件
xerial-core-0.8.0.jar
/org.xerial/xerial-core/0.8.0
查看xerial-core所有版本文件
|