-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
executable file
·47 lines (31 loc) · 850 Bytes
/
justfile
File metadata and controls
executable file
·47 lines (31 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env just --justfile
default:
@just --list --unsorted
build:
./gradlew -x test build
dependencies:
./gradlew -q dependencies --configuration compileClasspath > ./dependencies.txt
# Report up-to-date dependencies by com.github.ben-manes.versions
updates:
./gradlew dependencyUpdates > updates.txt
insight:
.gradlew dependencyInsight --dependency commons-codec --configuration scm
wrapper:
./gradlew wrapper --gradle-version=8.13
remotes:
git remote -v
upstream:
git fetch upstream
# git fetch --all
# merge template changes
upstream-merge:
git merge upstream/HEAD --allow-unrelated-histories
upstream-changes:
git log HEAD..upstream/next --oneline --reverse
upstream-rebase:
git rebase -i upstream/next
merge hash:
git merge {{hash}}
# build plugin zip
build-plugin:
./gradlew buildPlugin