-
Notifications
You must be signed in to change notification settings - Fork 12
Feature/scan findings window (AST-163510) #261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
cx-aniket-shinde
wants to merge
9
commits into
integration/devassist
Choose a base branch
from
feature/scan-findings-window
base: integration/devassist
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4c5b39b
Add scan detection backend and Findings window UI
cx-aniket-shinde 228d014
Removed unecessay code
cx-aniket-shinde 3d80f5f
Scan detection
cx-aniket-shinde c561004
Uneccessary logs removed
cx-aniket-shinde 0bfdc1d
Rebase
cx-aniket-shinde 0309b8e
Problems count
cx-aniket-shinde eacc706
Total findings number in tab title
cx-aniket-shinde 53a54e9
review comments resolved
cx-aniket-shinde f4012a1
Remove automatic scan triggers on file navigation and tab switching
cx-aniket-shinde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -5,9 +5,14 @@ Bundle-SymbolicName: com.checkmarx.eclipse.plugin;singleton:=true | |
| Bundle-Version: 1.0.0.qualifier | ||
| Bundle-Vendor: Checkmarx | ||
| Require-Bundle: org.eclipse.ui, | ||
| org.eclipse.ui.workbench.texteditor, | ||
| org.eclipse.ui.editors, | ||
| org.eclipse.core.runtime, | ||
| org.eclipse.jdt.core, | ||
| org.eclipse.ui.ide, | ||
| org.eclipse.jface.text, | ||
| org.eclipse.text, | ||
| org.eclipse.jdt.ui, | ||
| org.eclipse.jgit, | ||
| org.eclipse.e4.core.services, | ||
| com.google.guava, | ||
|
|
@@ -22,6 +27,8 @@ Import-Package: org.eclipse.core.resources, | |
| org.osgi.service.event;version="1.4.1" | ||
| Bundle-ActivationPolicy: lazy | ||
| Bundle-Activator: com.checkmarx.eclipse.Activator | ||
| Export-Package: com.checkmarx.ast.asca, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Optional : Export-Package re-exports a vendored third-party jar's internals as public API with no version. do we need to add an explicit version="2.4.24" attribute (bumped alongside every wrapper-jar upgrade)? |
||
| com.checkmarx.ast.wrapper | ||
| Bundle-ClassPath: ., | ||
| lib/slf4j-simple-2.0.17.jar, | ||
| lib/slf4j-reload4j-2.0.17.jar, | ||
|
|
||
This file contains hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
checkmarx-ast-eclipse-plugin/icons/severity/critical_16_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
checkmarx-ast-eclipse-plugin/icons/severity/critical_20_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional : do not need bundle-version ranges matching the minimum Eclipse platform this feature was built against?