We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cd57d3 commit a54e7d2Copy full SHA for a54e7d2
justfile
@@ -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