Skip to content

Commit

Permalink
✨ feat: submodule config 추가 [#2]
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-heejin committed Dec 2, 2023
1 parent e5d5c8a commit 5593cb4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "backend-config"]
path = backend-config
url = https://github.com/kotlin-project-team/backend-config.git
1 change: 1 addition & 0 deletions backend-config
Submodule backend-config added at 7f28ca
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,11 @@ tasks.withType<KotlinCompile> {
tasks.withType<Test> {
useJUnitPlatform()
}

tasks {
val copyBackendConfig by registering(Copy::class) {
from("./backend-config")
include("*.yml")
into("src/main/resources")
}
}

0 comments on commit 5593cb4

Please sign in to comment.