Skip to content

Commit

Permalink
chore: clean codes
Browse files Browse the repository at this point in the history
  • Loading branch information
hantsy committed Sep 21, 2024
1 parent 4e29066 commit 777f3c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/webmvc-method-arg-resolver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
with:
java-version: "21"
distribution: "zulu"
cache: "maven"
- name: Build with Maven
cache: "gradle"
- name: Build with Gradle
run: |
mvn -B -q clean verify --file webmvc-method-arg-resolver/pom.xml
cd webmvc-method-arg-resolver
chmod a+x ./gradlew
./gradlew clean build
2 changes: 2 additions & 0 deletions webmvc-method-arg-resolver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")

testImplementation("org.springframework.boot:spring-boot-starter-webflux")
testImplementation("org.springframework.boot:spring-boot-starter-test"){
// use mockk as mocking framework
exclude(module = "mockito-core")
Expand Down

0 comments on commit 777f3c1

Please sign in to comment.