Skip to content

Commit a54e7d2

Browse files
committed
justfile
1 parent 2cd57d3 commit a54e7d2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

justfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
default:
2+
@just --list --unsorted
3+
4+
# update gradle wrapper
5+
wrapper version="8.7":
6+
./gradlew wrapper --gradle-version={{version}}
7+
8+
# run gradle dependencyInsight for dependency and configuration
9+
insight dependency configuration="compileClasspath":
10+
./gradlew -q dependencyInsight --dependency {{dependency}} --configuration {{configuration}}
11+
12+
# assemble with warning-mode all
13+
compatibility:
14+
./gradlew assemble --warning-mode all

0 commit comments

Comments
 (0)