mirror of
https://github.com/WiIIiam278/HuskSync.git
synced 2025-12-19 14:59:21 +00:00
Bumps [com.zaxxer:HikariCP](https://github.com/brettwooldridge/HikariCP) from 7.0.1 to 7.0.2. - [Changelog](https://github.com/brettwooldridge/HikariCP/blob/dev/CHANGES) - [Commits](https://github.com/brettwooldridge/HikariCP/compare/HikariCP-7.0.1...HikariCP-7.0.2) --- updated-dependencies: - dependency-name: com.zaxxer:HikariCP dependency-version: 7.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.9 KiB
Groovy
46 lines
1.9 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api 'commons-io:commons-io:2.20.0'
|
|
api 'org.apache.commons:commons-text:1.14.0'
|
|
api 'net.william278:minedown:1.8.2'
|
|
api 'net.william278:mapdataapi:2.0'
|
|
api 'org.json:json:20250517'
|
|
api 'com.google.code.gson:gson:2.13.1'
|
|
api 'com.fatboyindustrial.gson-javatime-serialisers:gson-javatime-serialisers:1.1.2'
|
|
api 'de.exlll:configlib-yaml:4.6.1'
|
|
api 'net.william278:paginedown:1.1.2'
|
|
api 'net.william278:DesertWell:2.0.4'
|
|
api('com.zaxxer:HikariCP:7.0.2') {
|
|
exclude module: 'slf4j-api'
|
|
}
|
|
|
|
compileOnlyApi 'net.william278.toilet:toilet-common:1.0.16'
|
|
|
|
compileOnly 'net.william278.uniform:uniform-common:1.3.9'
|
|
compileOnly 'com.mojang:brigadier:1.1.8'
|
|
compileOnly 'org.projectlombok:lombok:1.18.38'
|
|
compileOnly 'org.jetbrains:annotations:26.0.2'
|
|
compileOnly 'net.kyori:adventure-api:4.25.0'
|
|
compileOnly 'net.kyori:adventure-platform-api:4.4.0'
|
|
compileOnly "net.kyori:adventure-text-serializer-plain:4.25.0"
|
|
compileOnly 'com.google.guava:guava:33.4.8-jre'
|
|
compileOnly 'com.github.plan-player-analytics:Plan:5.6.2965'
|
|
compileOnly "redis.clients:jedis:$jedis_version"
|
|
compileOnly "com.mysql:mysql-connector-j:$mysql_driver_version"
|
|
compileOnly "org.mariadb.jdbc:mariadb-java-client:$mariadb_driver_version"
|
|
compileOnly "org.postgresql:postgresql:$postgres_driver_version"
|
|
compileOnly "org.mongodb:mongodb-driver-sync:$mongodb_driver_version"
|
|
compileOnly "org.xerial.snappy:snappy-java:$snappy_version"
|
|
|
|
testImplementation "redis.clients:jedis:$jedis_version"
|
|
testImplementation "org.xerial.snappy:snappy-java:$snappy_version"
|
|
testImplementation 'com.google.guava:guava:33.4.8-jre'
|
|
testImplementation 'com.github.plan-player-analytics:Plan:5.6.2965'
|
|
testCompileOnly 'de.exlll:configlib-yaml:4.6.1'
|
|
testCompileOnly 'org.jetbrains:annotations:26.0.2'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.38'
|
|
} |