added option for local build tasks

This commit is contained in:
Elias Müller 2025-04-07 12:42:08 +02:00
parent e9a8e83019
commit 90b623ea07
2 changed files with 7 additions and 1 deletions

2
.gitignore vendored
View File

@ -118,3 +118,5 @@ run/
!gradle-wrapper.jar
/gradlew
/gradlew.bat
local.gradle

View File

@ -46,4 +46,8 @@ shadowJar {
relocate 'com.sparkjava', 'eu.mhsl.lib.shadow.spark-core'
mergeServiceFiles()
}
}
if (file("local.gradle").exists()) {
apply from: "local.gradle"
}