Skip to content

Commit b7d8733

Browse files
committed
gradle formatting
1 parent 0592c63 commit b7d8733

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

server/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,20 @@ spotless {
5858
}
5959

6060
task createKeys(type: JavaExec) {
61-
main = 'dev.findfirst.security.util.KeyGenerator' // Replace with the fully qualified class name of your utility
61+
main = 'dev.findfirst.security.util.KeyGenerator'
6262
classpath = sourceSets.main.runtimeClasspath
6363
executable = javaToolchains.launcherFor(java.toolchain).get().executablePath
64-
doLast {
64+
doLast {
6565
def keyFile = file("${projectDir}/src/main/resources/app.key")
6666
println "Keys generated at: ${keyFile}"
6767

6868
copy {
6969
from keyFile.getParent()
7070
include "app.*"
7171
into "${buildDir}/resources/main"
72+
}
7273
}
73-
}}
74+
}
7475

7576
tasks.named("build") {
7677
dependsOn("spotlessApply")

0 commit comments

Comments
 (0)