Skip to content

Commit

Permalink
feat: gradle 태스크 수정 및 실행 스크립트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
wwingyou committed Mar 24, 2024
1 parent e4e502a commit e12a3b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JWT/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ tasks.named('test') {
}

// 배포용 태스크
tasks.register('jarDir') {
println "${project.buildDir}/libs/${project.name}-${version}"
tasks.register('jarPath') {
println "${project.buildDir}/libs/${project.name}-${version}.jar"
}
3 changes: 3 additions & 0 deletions JWT/deploy/runner.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

nohup java -jar $1 --spring.profiles.active=dev 2>&1 &

0 comments on commit e12a3b5

Please sign in to comment.