Skip to content

Commit

Permalink
✨ feat: start.sh 수정 (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
gomin0 committed Jun 18, 2024
1 parent cfe9bd2 commit 7d50726
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ fabric.properties

# Package Files #
*.jar
!application.jar
*.war
*.nar
*.ear
Expand Down
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ dependencies {
// Slf4j
implementation 'org.slf4j:slf4j-api:2.0.7'

// Validation
implementation 'org.springframework.boot:spring-boot-starter-validation'

implementation 'com.google.guava:guava:33.0.0-jre'

implementation 'com.google.code.gson:gson'
Expand All @@ -68,8 +65,15 @@ dependencies {

//firebase
implementation 'com.google.firebase:firebase-admin:9.2.0'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0' // JUnit 5
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0' // JUnit 5 실행 엔진
}

tasks.named('test') {
useJUnitPlatform()
}

tasks.withType(JavaExec) {
classpath = sourceSets.main.runtimeClasspath
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
1 change: 0 additions & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ START_LOG="$ROOT_PATH/start.log"
NOW=$(date +%c)

echo "[$NOW] $JAR 복사" >> $START_LOG
# 정확한 경로를 지정하여 복사 명령어를 사용합니다.
cp $ROOT_PATH/build/libs/*.jar $JAR

echo "[$NOW] > $JAR 실행" >> $START_LOG
Expand Down

0 comments on commit 7d50726

Please sign in to comment.