forked from xerial/sqlite-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
861 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,5 @@ atlassian-ide-plugin.xml | |
*.so | ||
*.dll | ||
*.jnilib | ||
|
||
.fleet/settings.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
version=3.39.4 | ||
artifactVersion=3.39.4.1-SNAPSHOT | ||
sqliteMCVersion=1.5.3 | ||
version=3.40.0 | ||
artifactVersion=3.40.0.0-SNAPSHOT | ||
sqliteMCVersion=1.5.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,16 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>io.github.willena</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
<version>3.39.4.1-SNAPSHOT</version> | ||
<version>3.40.0.0-SNAPSHOT</version> | ||
<name>SQLite JDBC</name> | ||
<description>SQLite JDBC library with encryption and authentication support</description> | ||
<url>https://github.com/Willena/sqlite-jdbc-crypt</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<junit.version>5.7.2</junit.version> | ||
<junit.version>5.9.1</junit.version> | ||
<surefire.version>2.22.2</surefire.version> | ||
<java9.sourceDirectory>${project.basedir}/src/main/java9</java9.sourceDirectory> | ||
</properties> | ||
|
||
<licenses> | ||
|
@@ -90,17 +91,32 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-help-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>3.3.0</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<version>3.10.1</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
<release>8</release> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>java9-compile</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
<configuration> | ||
<release>9</release> | ||
<compileSourceRoots> | ||
<compileSourceRoot>${java9.sourceDirectory}</compileSourceRoot> | ||
</compileSourceRoots> | ||
<multiReleaseOutput>true</multiReleaseOutput> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
|
@@ -117,13 +133,13 @@ | |
|
||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>3.3.0</version> | ||
<configuration> | ||
<!-- Pick the MANIFEST generated by the bundle plugin --> | ||
<archive> | ||
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> | ||
<manifestEntries> | ||
<Automatic-Module-Name>io.github.willena.sqlitejdbc</Automatic-Module-Name> | ||
<Multi-Release>true</Multi-Release> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
|
@@ -145,7 +161,7 @@ | |
<plugin> | ||
<groupId>com.diffplug.spotless</groupId> | ||
<artifactId>spotless-maven-plugin</artifactId> | ||
<version>2.12.3</version> | ||
<version>2.27.2</version> | ||
<configuration> | ||
<java> | ||
<toggleOffOn/> | ||
|
@@ -160,22 +176,52 @@ | |
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.8</version> | ||
<version>1.6.13</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
<version>2.13.0</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<executions> | ||
<execution> | ||
<id>enforce-maven</id> | ||
<goals> | ||
<goal>enforce</goal> | ||
</goals> | ||
<configuration> | ||
<rules> | ||
<requireMavenVersion> | ||
<version>3.2.5</version> | ||
</requireMavenVersion> | ||
<requireJavaVersion> | ||
<version>11</version> | ||
</requireJavaVersion> | ||
</rules> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>2.4.0</version> | ||
<version>5.1.8</version> | ||
<extensions>true</extensions> | ||
<executions> | ||
<execution> | ||
|
@@ -193,9 +239,9 @@ | |
</build> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/Willena/sqlite-jdbc-crypt.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]:Willena/sqlite-jdbc-crypt.git</developerConnection> | ||
<url>https://github.com/Willena/sqlite-jdbc-crypt</url> | ||
<connection>scm:git:git://github.com/xerial/sqlite-jdbc.git</connection> | ||
<developerConnection>scm:git:[email protected]:xerial/sqlite-jdbc.git</developerConnection> | ||
<url>https://github.com/xerial/sqlite-jdbc</url> | ||
</scm> | ||
|
||
<distributionManagement> | ||
|
@@ -225,7 +271,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
<version>3.0.1</version> | ||
<configuration> | ||
<!-- Prevent gpg from using pinentry programs --> | ||
<gpgArguments> | ||
|
@@ -246,8 +292,9 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>3.4.1</version> | ||
<configuration> | ||
<sourcepath>src/main/java</sourcepath> | ||
<additionalOptions>-Xdoclint:none</additionalOptions> | ||
<additionalJOption>-Xdoclint:none</additionalJOption> | ||
</configuration> | ||
|
@@ -329,6 +376,8 @@ | |
<include>**/RSMetaDataTest</include> | ||
<!-- SegFault --> | ||
<exclude>**/UDFCustomErrorTest.java</exclude> | ||
<!-- Not needed --> | ||
<exclude>**/architecture/*.java</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
|
@@ -368,13 +417,26 @@ | |
<dependency> | ||
<groupId>org.junit-pioneer</groupId> | ||
<artifactId>junit-pioneer</artifactId> | ||
<version>1.4.2</version> | ||
<version>1.7.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>3.12.4</version> | ||
<version>4.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.tngtech.archunit</groupId> | ||
<artifactId>archunit-junit5</artifactId> | ||
<version>1.0.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- Required by archunit --> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>1.3.4</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
Oops, something went wrong.