Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
[WEAV-16] boot jar 생성을 위한 애플리케이션 진입점 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
waterfogSW committed Jan 19, 2024
1 parent c4ea44e commit bb135de
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bootstrap/http/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ dependencies {
implementation(project(":application"))
implementation(project(":infrastructure:client"))
implementation(project(":infrastructure:persistence"))

implementation("org.springframework.boot:spring-boot-starter-web:${Version.SPRING_BOOT}")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.studentcenter.weave.bootstrap

import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication

@SpringBootApplication
class WeaveHttpApplication

fun main(args: Array<String>) {
runApplication<WeaveHttpApplication>(*args)
}

0 comments on commit bb135de

Please sign in to comment.