FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pom-scijava/bin/report.sh at pom-scijava-45.0.0 · scijava/pom-scijava · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
scijava
/
pom-scijava
Public
Notifications
You must be signed in to change notification settings
Fork
35
Star
28
Code
Issues
8
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pom-scijava
/
bin
/
report.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
24 lines (23 loc) · 839 Bytes
Breadcrumbs
pom-scijava
/
bin
/
report.sh
Copy path
File metadata and controls
executable file
·
24 lines (23 loc) · 839 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!
/bin/sh
#
Generate the status, badges, and team reports for a Maven BOM, writing them
#
under target/pombast/ (see pombast.toml).
#
#
Run from a BOM checkout (e.g. a pom-scijava working copy):
#
#
bin/report.sh
#
#
The status report overlays binary/source compatibility info from
#
target/pombast/smelt.json when present. Run bin/check.sh first, or drop a
#
published smelt.json into target/pombast/, to populate it; without it, the
#
reports are still generated, just without the bytecode classification.
command
-v pombast
>
/dev/null
2>&1
||
uv tool install
"
git+https://github.com/scijava/pombast.git
"
smelt=target/pombast/smelt.json
if
[
-f
"
$smelt
"
]
;
then
pombast status --smelt
"
$smelt
"
else
echo
"
==
$smelt
not found; generating status without bytecode classification ==
"
pombast status
fi
pombast badges
pombast team
Back
|
FazBrowse Home
|
New Git URL