Skip to content

Commit

Permalink
chore: added tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ngyewch committed Jul 24, 2024
1 parent 067f0c8 commit 42cb744
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions java/Taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
version: 3

tasks:
clean:
desc: Clean
cmds:
- ./gradlew clean

build:
desc: Build
cmds:
- ./gradlew build

publishLocally:
desc: Publish locally
cmds:
- ./gradlew publishAllPublicationsToBuildRepository

dependencyUpdates:
desc: Dependency updates
cmds:
- ./gradlew dependencyUpdates | grep '\[' | grep -v '\[\[' | sort | uniq

spotlessCheck:
desc: Spotless check
cmds:
- ./gradlew spotlessCheck

spotlessApply:
desc: Spotless apply
cmds:
- ./gradlew spotlessApply

buildHealth:
cmds:
- ./gradlew buildHealth && cat build/reports/dependency-analysis/build-health-report.txt

0 comments on commit 42cb744

Please sign in to comment.