Skip to content
This repository was archived by the owner on Nov 21, 2023. It is now read-only.

Commit ec53d1b

Browse files
authored
[#22] actions 수정 (#33)
* [#22] actions 테스트 * [#22] circular dependency 제거 * [#22] submodules 에서 bootJar 제거
1 parent 4cbbfb9 commit ec53d1b

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/gradle-build-pr.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616
uses: actions/setup-java@v1
1717
with:
1818
java-version: 11
19-
- name: Build USER module
19+
- name: Build all gradle projects
2020
uses: gradle/gradle-build-action@v2
2121
with:
22-
build-root-directory: /
23-
arguments: build
22+
arguments: clean build
2423
gradle-version: 7.2

build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,18 @@ project(":front") {
7272
}
7373
}
7474

75+
project(":submodules") {
76+
tasks.getByName<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") {
77+
enabled = false
78+
}
79+
}
80+
7581
project(":submodules:commons") {
7682
dependencies {
77-
implementation(project(":submodules:commons"))
78-
7983
api("org.springframework.boot:spring-boot-starter-integration")
8084
}
85+
86+
tasks.getByName<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") {
87+
enabled = false
88+
}
8189
}

0 commit comments

Comments
 (0)