광주은행 전용 password encoder 반영

This commit is contained in:
Rinjae
2025-09-24 17:48:39 +09:00
parent 8d07897e42
commit 050ec17a7f
4 changed files with 70 additions and 14 deletions
+11
View File
@@ -146,4 +146,15 @@ war {
from('src/main/resources/jeus-web-dd.xml') { into 'WEB-INF' }
from('src/main/resources/weblogic.xml') { into 'WEB-INF' }
}
task printSourceSets {
doLast {
sourceSets.each { srcSet ->
println "SourceSet: ${srcSet.name}"
println " Java srcDirs : ${srcSet.allJava.srcDirs}"
println " Resources : ${srcSet.resources.srcDirs}"
println " Output dir : ${srcSet.output.classesDirs.asPath}"
}
}
}