mariadb-connector-java: 3.3.0 -> 3.3.3

https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.3.0...3.3.3
This commit is contained in:
Anthony Roussel 2024-03-17 23:32:14 +01:00
parent 8210f26339
commit 7408688e7f
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -6,16 +6,16 @@
maven.buildMavenPackage rec {
pname = "mariadb-connector-java";
version = "3.3.0";
version = "3.3.3";
src = fetchFromGitHub {
owner = "mariadb-corporation";
repo = "mariadb-connector-j";
rev = "refs/tags/${version}";
hash = "sha256-JuMm01ihgVoKpe8wyuUIDyzSxMODRg7dQpTCyVA/K10=";
hash = "sha256-fvqVHjLYLO6reIkQ+SQMEXOw88MDZyNV7T8w0uFgnPg=";
};
mvnHash = "sha256-Px4Qxb1tTvRKZum1xfe0mdX+EyimnyyfzrydiaDaYRo=";
mvnHash = "sha256-7O+G5HT6mtp12zWL3Gn12KPVUwp3GMaWGvXX6Sg1+6k=";
# Disable tests because they require networking
mvnParameters = "-DskipTests";
@ -32,7 +32,7 @@ maven.buildMavenPackage rec {
description = "MariaDB Connector/J is used to connect applications developed in Java to MariaDB and MySQL databases";
homepage = "https://mariadb.com/kb/en/about-mariadb-connector-j/";
changelog = "https://mariadb.com/kb/en/mariadb-connector-j-release-notes/";
license = licenses.lgpl21;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ anthonyroussel ];
platforms = platforms.all;
};