-
Notifications
You must be signed in to change notification settings - Fork 83
ux - display maven and gradle dependencies with pattern 'groupId:artifactId:version ' #859
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
Merged
Merged
Changes from 12 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
bceb459
ux - display maven and gradle dependencies with pattern 'groupId:arti…
002adf6
add contibuting file
mamilic 2da4296
launch: add projectName to Attach To Plugin task
mamilic e64ac43
refactor: use EnumMap instead of HasMap due to performance improvement
mamilic 3db2c0e
refactor: print label for maven packages only
mamilic 39b10c7
refactor: update CONTRIBUTING.md
mamilic f4b44d9
refactor: simplify getLabel logic in PackageRootNode
mamilic 4530ccd
refactor: sort children by label
mamilic 79a1cf9
refactor: remove unused import in dependencyDataProvider.ts
mamilic 18527a1
refactor: remove unused methods in ContainerNode
mamilic ecced17
refactor: set display name on java server side
mamilic 234105e
refactor: fix dependencyDataProvider
mamilic 0c1a8d3
Refactor: fix comparison operator
mamilic 9bb8490
test: add test for displaying Maven dependency nodes in correct format
mamilic fe0e194
fix: lint issues
mamilic 0cb8e49
Wait more time
jdneo 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# How to Contribute | ||
|
||
We greatly appreciate contributions to the vscode-java-dependency project. Your efforts help us maintain and improve this extension. To ensure a smooth contribution process, please follow these guidelines. | ||
|
||
## Prerequisites | ||
- [JDK](https://www.oracle.com/java/technologies/downloads/?er=221886) | ||
- [Node.JS](https://nodejs.org/en/) | ||
- [VSCode](https://code.visualstudio.com/) | ||
|
||
## Build and Run | ||
|
||
To set up the vscode-java-dependency project, follow these steps: | ||
|
||
1. **Build the Server JAR**: | ||
- The server JAR (Java application) is located in the [jdtls.ext](./jdtls.ext) directory. | ||
- Run the following command to build the server: | ||
```shell | ||
npm run build-server | ||
``` | ||
|
||
2. **Install Dependencies**: | ||
- Execute the following command to install the necessary dependencies: | ||
```shell | ||
npm install | ||
``` | ||
|
||
3. **Run/Debug the Extension**: | ||
- Open the "Run and Debug" view in Visual Studio Code. | ||
- Run the "Run Extension" task. | ||
|
||
4. **Attach to Plugin[Debug Java]**: | ||
- Prerequisite: Ensure that the extension is activated, meaning the Java process is already launched. This is required for the task to run properly. | ||
- Open the "Run and Debug" view in Visual Studio Code. | ||
- Run the "Attach to Plugin" task. | ||
jdneo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Note: This task is required only if you want to debug Java code [jdtls.ext](./jdtls.ext). It requires the [vscode-pde](https://marketplace.visualstudio.com/items?itemName=yaozheng.vscode-pde) extension to be installed. | ||
|
||
Thank you for your contributions and support! |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.