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

Commit

Permalink
[#22] actions 수정 (#33)
Browse files Browse the repository at this point in the history
* [#22] actions 테스트

* [#22] circular dependency 제거

* [#22] submodules 에서 bootJar 제거
  • Loading branch information
chanhyeong authored Nov 4, 2021
1 parent 4cbbfb9 commit ec53d1b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/gradle-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build USER module
- name: Build all gradle projects
uses: gradle/gradle-build-action@v2
with:
build-root-directory: /
arguments: build
arguments: clean build
gradle-version: 7.2
12 changes: 10 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,18 @@ project(":front") {
}
}

project(":submodules") {
tasks.getByName<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") {
enabled = false
}
}

project(":submodules:commons") {
dependencies {
implementation(project(":submodules:commons"))

api("org.springframework.boot:spring-boot-starter-integration")
}

tasks.getByName<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") {
enabled = false
}
}

0 comments on commit ec53d1b

Please sign in to comment.