-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support new asset names with PMD 7.0.0-rc3
- Loading branch information
Showing
8 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "Running PMD 7.0.0-rc3 with: $@" | ||
|
||
echo '{ | ||
"runs": [ | ||
{ | ||
"tool": { | ||
"driver": { | ||
"name": "PMD", | ||
"version": "7.0.0-rc3" | ||
} | ||
} | ||
} | ||
] | ||
}' > pmd-report.sarif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@echo off | ||
echo Running PMD 7.0.0-rc3 with: %* | ||
|
||
( | ||
echo { | ||
echo "runs": [ | ||
echo { | ||
echo "tool": { | ||
echo "driver": { | ||
echo "name": "PMD", | ||
echo "version": "7.0.0-rc3" | ||
echo } | ||
echo } | ||
echo } | ||
echo ] | ||
echo } | ||
)>"pmd-report.sarif" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"id": "2", | ||
"name": "latest pmd release for test (7.0.0-rc3)", | ||
"tag_name": "pmd_releases/7.0.0-rc3", | ||
"assets": [ | ||
{ | ||
"browser_download_url": "https://github.com/pmd/pmd/releases/download/pmd_releases/7.0.0-rc3/pmd-dist-7.0.0-rc3-bin.zip", | ||
"name": "pmd-dist-7.0.0-rc3-bin.zip" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters