make it not increase compile time this much
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m37s

This commit is contained in:
Daniella / Tove 2024-06-25 06:44:26 +02:00
parent d241cf9cc9
commit ec8c2c4ce9
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
4 changed files with 10 additions and 10 deletions

View file

@ -75,7 +75,7 @@ repositories {
configurations {
jarLibs
configureEach {
reloadQuickly {
resolutionStrategy.cacheChangingModulesFor 60, 'seconds'
}
}
@ -94,7 +94,7 @@ dependencies {
exclude module: 'log4j-core'
}
jarLibs('de.tudbut:tuddylib:+')
reloadQuickly jarLibs('de.tudbut:tuddylib:+')
// should NOT go into the jar.
implementation('com.github.cabaletta:baritone:1.2.14')

View file

@ -13,7 +13,7 @@ repositories {
configurations {
jarLibs
configureEach {
reloadQuickly {
resolutionStrategy.cacheChangingModulesFor 60, 'seconds'
}
}
@ -25,7 +25,7 @@ dependencies {
implementation('de.tudbut:tuddylib:+')
jarLibs("net.dv8tion:JDA:5.0.0-beta.24")
reloadQuickly jarLibs("net.dv8tion:JDA:5.0.0-beta.24")
implementation configurations.jarLibs
}

View file

@ -66,7 +66,7 @@ repositories {
configurations {
jarLibs
configureEach {
reloadQuickly {
resolutionStrategy.cacheChangingModulesFor 60, 'seconds'
}
}
@ -82,8 +82,8 @@ dependencies {
exclude module: 'log4j-core'
}
jarLibs('de.tudbut:tuddylib:+')
jarLibs('de.com.baseband:ClientBoot:+')
reloadQuickly jarLibs('de.tudbut:tuddylib:+')
reloadQuickly jarLibs('de.com.baseband:ClientBoot:+')
//jarLibs(group: 'com.github.oshi', name: 'oshi-core', version: '1.+');

View file

@ -15,7 +15,7 @@ repositories {
configurations {
embed
compile.extendsFrom(embed)
configureEach {
reloadQuickly {
resolutionStrategy.cacheChangingModulesFor 60, 'seconds'
}
}
@ -23,8 +23,8 @@ configurations {
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation embed('de.tudbut:tuddylib:+')
implementation embed('at.favre.lib:bcrypt:0.10.2')
reloadQuickly embed('de.tudbut:tuddylib:+')
embed('at.favre.lib:bcrypt:0.10.2')
}
jar {