We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5ac5e commit 506143eCopy full SHA for 506143e
1 file changed
justfile
@@ -0,0 +1,29 @@
1
+#!/usr/bin/env just --justfile
2
+
3
+build:
4
+ ./gradlew -x test build
5
6
+dependencies:
7
+ ./gradlew -q dependencies --configuration compileClasspath > ./dependencies.txt
8
9
+# Report up-to-date dependencies by com.github.ben-manes.versions
10
+updates:
11
+ ./gradlew dependencyUpdates > updates.txt
12
13
+insight:
14
+ .gradlew dependencyInsight --dependency commons-codec --configuration scm
15
16
+wrapper:
17
+ ./gradlew wrapper --gradle-version=8.13
18
19
20
+remotes:
21
+ git remote -v
22
23
+upstream:
24
+ git fetch upstream
25
+# git fetch --all
26
27
+# merge template changes
28
+upstream-merge:
29
+ git merge upstream/main --allow-unrelated-histories
0 commit comments