Compare commits

...

7 Commits

View File

@@ -78,7 +78,7 @@ buildscript {
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
classpath 'com.github.johnrengelman:shadow:8.1.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.51.0'
}
}
@@ -89,13 +89,13 @@ repositories {
dependencies {
// Logging
api 'org.slf4j:slf4j-simple:1.7.36'
api 'org.slf4j:slf4j-simple:2.0.12'
// Easy file management
api 'commons-io:commons-io:2.15.1'
// Config management
api 'org.yaml:snakeyaml:1.33'
api 'org.yaml:snakeyaml:2.2'
// Dependencies from old Matrix-java-sdk
api 'org.apache.commons:commons-lang3:3.14.0'
@@ -137,7 +137,7 @@ dependencies {
api 'org.postgresql:postgresql:42.7.3'
// MariaDB/MySQL
api 'org.mariadb.jdbc:mariadb-java-client:2.7.12'
api 'org.mariadb.jdbc:mariadb-java-client:3.3.3'
// UNIX sockets
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.0'
@@ -172,9 +172,9 @@ jar {
}
shadowJar {
baseName = project.name
classifier = null
version = null
archiveBaseName.set(project.name)
archiveClassifier.set('') // Set to an empty string if you don't need a classifier.
archiveVersion.set('') // Set to an empty string if you don't want the version in the jar name.
}
task debBuild(dependsOn: shadowJar) {