Skip to content

Commit

Permalink
chore: Main-Class 경로 입력
Browse files Browse the repository at this point in the history
  • Loading branch information
seonghooni committed Aug 1, 2024
1 parent 88c51be commit 0eb9a0d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ repositories {
mavenCentral()
}

jar {
manifest {
attributes(
'Manifest-Version': '1.0',
'Main-Class': 'com.goormy.hackathon.HackathonApplication'
)
}
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class LikeService {
@Autowired
private SqsClient sqsClient;

@Value("${spring.cloud.aws.sqs.queue-url")
@Value("${spring.cloud.aws.sqs.queue-url}")
private String queueUrl;

public void sendLikeRequest(Long userId, Long postId) {
Expand Down

0 comments on commit 0eb9a0d

Please sign in to comment.