Fix build (to API)
This commit is contained in:
parent
4396e1b60c
commit
2fc75695b8
@ -5,9 +5,9 @@
|
||||
|
||||
dependencies {
|
||||
compileOnly(project(":project:module-util"))
|
||||
implementation("org.yaml:snakeyaml:2.2")
|
||||
implementation("com.electronwill.night-config:core:3.6.7")
|
||||
implementation("com.electronwill.night-config:yaml:3.6.7") {
|
||||
api("org.yaml:snakeyaml:2.2")
|
||||
api("com.electronwill.night-config:core:3.6.7")
|
||||
api("com.electronwill.night-config:yaml:3.6.7") {
|
||||
exclude("org.yaml", "snakeyaml")
|
||||
}
|
||||
}
|
||||
|
||||
@ -7,10 +7,10 @@ dependencies {
|
||||
compileOnly(libs.configme)
|
||||
compileOnly(libs.jalu.injector)
|
||||
// Database Connection Pool
|
||||
implementation("com.zaxxer:HikariCP:4.0.3" /* Latest java 8 release */) {
|
||||
api("com.zaxxer:HikariCP:4.0.3" /* Latest java 8 release */) {
|
||||
exclude("org.slf4j", "slf4j-api")
|
||||
}
|
||||
implementation("ch.jalu:datasourcecolumns:0.1.2")
|
||||
api("ch.jalu:datasourcecolumns:0.1.2")
|
||||
}
|
||||
|
||||
tasks.shadowJar {
|
||||
|
||||
@ -6,7 +6,7 @@ dependencies {
|
||||
compileOnly(libs.configme)
|
||||
compileOnly(libs.jalu.injector)
|
||||
// Java Email Library
|
||||
implementation(libs.apache.commons.email)
|
||||
api(libs.apache.commons.email)
|
||||
}
|
||||
|
||||
tasks.shadowJar {
|
||||
|
||||
@ -6,11 +6,11 @@ dependencies {
|
||||
compileOnly(libs.configme)
|
||||
compileOnly(libs.jalu.injector)
|
||||
// PBKDF2 implementation
|
||||
implementation("de.rtner:PBKDF2:1.1.4")
|
||||
api("de.rtner:PBKDF2:1.1.4")
|
||||
// BCrypt implementation
|
||||
implementation("at.favre.lib:bcrypt:0.10.2")
|
||||
api("at.favre.lib:bcrypt:0.10.2")
|
||||
// Argon2 implementation
|
||||
implementation("de.mkammerer:argon2-jvm-nolibs:2.11")
|
||||
api("de.mkammerer:argon2-jvm-nolibs:2.11")
|
||||
}
|
||||
|
||||
tasks.shadowJar {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
dependencies {
|
||||
compileOnly(libs.guava)
|
||||
// String comparison library. Used for dynamic help system.
|
||||
implementation("net.ricecode:string-similarity:1.0.0")
|
||||
api("net.ricecode:string-similarity:1.0.0")
|
||||
}
|
||||
|
||||
tasks.shadowJar {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user