Skip to content

Commit

Permalink
Bump SQLite driver version 3.36.0.3 -> 3.45.1.0 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
bivashy authored Mar 8, 2024
1 parent 07ce77e commit 4c12fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public enum DatabaseConnectionProvider {
public String getConnectionUrl(LegacyStorageDataSettings settings) {
return "jdbc:mysql://" + settings.getHost() + ":" + settings.getPort() + "/" + settings.getDatabase();
}
}, SQLITE("https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.3/sqlite-jdbc-3.36.0.3.jar") {
}, SQLITE("https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.45.1.0/sqlite-jdbc-3.45.1.0.jar") {
@Override
public String getConnectionUrl(LegacyStorageDataSettings settings) {
return "jdbc:sqlite:" + AuthPlugin.instance().getFolder().getAbsolutePath() + File.separator + "auth.db";
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/configurations/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data:
#
# # Ссылка для скачивания драйвера.
# # MySQL 8.0.31: https://repo1.maven.org/maven2/com/mysql/mysql-connector-j/8.0.31/mysql-connector-j-8.0.31.jar
# # SQLite 3.36.0.3: https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.3/sqlite-jdbc-3.36.0.3.jar
# # SQLite 3.45.1.0: https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.45.1.0/sqlite-jdbc-3.45.1.0.jar
# # PostgreSQL 42.4.0: https://repo1.maven.org/maven2/org/postgresql/postgresql/42.5.1/postgresql-42.5.1.jar
# # MariaDB 3.0.6: https://repo1.maven.org/maven2/org/mariadb/jdbc/mariadb-java-client/3.0.8/mariadb-java-client-3.0.8.jar
# download-url: 'https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.3/sqlite-jdbc-3.36.0.3.jar'
Expand Down

0 comments on commit 4c12fc5

Please sign in to comment.