{"id":15012593,"url":"https://github.com/microsoft/vscode-java-dependency","last_synced_at":"2025-05-16T18:06:19.243Z","repository":{"id":37664206,"uuid":"129053101","full_name":"microsoft/vscode-java-dependency","owner":"microsoft","description":"Manage Java projects in Visual Studio Code.","archived":false,"fork":false,"pushed_at":"2025-03-28T22:20:36.000Z","size":10109,"stargazers_count":170,"open_issues_count":95,"forks_count":82,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-05-15T00:08:56.468Z","etag":null,"topics":["java","language-support","project-management","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-dependency","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/microsoft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-04-11T07:29:59.000Z","updated_at":"2025-05-11T12:03:36.000Z","dependencies_parsed_at":"2024-03-27T07:25:57.225Z","dependency_job_id":"b199511c-c47d-4148-8145-738a83f6cace","html_url":"https://github.com/microsoft/vscode-java-dependency","commit_stats":{"total_commits":455,"total_committers":23,"mean_commits":"19.782608695652176","dds":0.4945054945054945,"last_synced_commit":"6ee1c6bb29e293e3b7e5cd4477f8e5d43a0cf280"},"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fvscode-java-dependency","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fvscode-java-dependency/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fvscode-java-dependency/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fvscode-java-dependency/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microsoft","download_url":"https://codeload.github.com/microsoft/vscode-java-dependency/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254582904,"owners_count":22095518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","language-support","project-management","vscode-extension"],"created_at":"2024-09-24T19:42:53.407Z","updated_at":"2025-05-16T18:06:19.183Z","avatar_url":"https://github.com/microsoft.png","language":"TypeScript","readme":"# Project Manager for Java\n\n\u003e Manage Java projects in Visual Studio Code\n\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/microsoft/vscode-java-dependency/windows.yml?label=Windows%20Build\u0026style=flat-square)](https://github.com/microsoft/vscode-java-dependency/actions/workflows/windows.yml?query=branch%3Amain)\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/microsoft/vscode-java-dependency/linux.yml?label=Linux%20Build\u0026style=flat-square)](https://github.com/microsoft/vscode-java-dependency/actions/workflows/linux.yml?query=branch%3Amain)\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/microsoft/vscode-java-dependency/macOS.yml?label=Darwin%20Build\u0026style=flat-square)](https://github.com/microsoft/vscode-java-dependency/actions/workflows/macOS.yml?query=branch%3Amain)\n\n## Overview\n\nA lightweight extension to provide additional Java project explorer features. It works with [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) to provide the following features:\n\n### Project View\n\n![project-view](https://raw.githubusercontent.com/Microsoft/vscode-java-dependency/main/images/project-explorer.png)\n\n### Create Java Projects\n\n![create project](https://raw.githubusercontent.com/Microsoft/vscode-java-dependency/main/images/create-project.png)\n\n### Export Jar\n\u003e Note: For Spring Boot projects, please use the build tool to build the executable jar, for example: `mvn package`.\n\n![export jar](https://raw.githubusercontent.com/Microsoft/vscode-java-dependency/main/images/export-jar.png)\n\n### Manage Dependencies\n\nYou can work with JAR files directly without any build tools. Go to `JAVA PROJECTS` view, find the `Referenced Libraries` node and click the `+` icon:\n\n![Reference JAR Files](https://raw.githubusercontent.com/Microsoft/vscode-java-dependency/main/images/manage-dependencies.gif)\n\nIf you want to fine-tune this, go to `settings.json` and look for the `java.project.referencedLibraries` entry.\n\n```json\n\"java.project.referencedLibraries\": [\n    \"library/**/*.jar\",\n    \"/home/username/lib/foo.jar\"\n]\n```\n\nYou can tell that the glob pattern is supported. And here's more - you can  include/exclude certain files, and attach source JARs:\n\n```json\n\"java.project.referencedLibraries\": {\n    \"include\": [\n        \"library/**/*.jar\",\n        \"/home/username/lib/foo.jar\"\n    ],\n    \"exclude\": [\n        \"library/sources/**\"\n    ],\n    \"sources\": {\n        \"library/bar.jar\": \"library/sources/bar-src.jar\"\n    }\n}\n```\n\n## Requirements\n\n- VS Code (version 1.83.1+)\n- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java)\n\n\n## Settings\n\n| Setting Name | Description | Default Value |\n|---|---|---|\n| `java.dependency.showMembers` | Specify whether to show the members in the Java Projects explorer. | `false` |\n| `java.dependency.syncWithFolderExplorer` | Specify whether to link Java Projects Explorer with the active editor. | `true` |\n| `java.dependency.autoRefresh` | Specify whether to automatically sync the change from editor to the Java Projects explorer. | `true` |\n| `java.dependency.refreshDelay` | The delay time (ms) the auto refresh is invoked when changes are detected. | `2000ms` |\n| `java.dependency.packagePresentation` | Specify how to display the package. Supported values are: `flat`, `hierarchical`.| `flat` |\n| `java.project.exportJar.targetPath` | The output path of export jar. When this setting is **empty** , a file explorer will pop up to let the user select the output location.| `${workspaceFolder}/${workspaceFolderBasename}.jar` |\n| `java.project.explorer.showNonJavaResources` | When enabled, the explorer shows non-Java resources. | `true` |\n\n## Contribution\n\n### Build\n* Prerequirement\n    - Node.js\n    - Java SDK 11 or above\n\n* Go to root folder:\n```\nnpm install\nnpm run build-server\n```\n\n## Telemetry\nVS Code collects usage data and sends it to Microsoft to help improve our products and services. Read our [privacy statement](https://go.microsoft.com/fwlink/?LinkID=528096\u0026clcid=0x409) to learn more. If you don't wish to send usage data to Microsoft, you can set the `telemetry.enableTelemetry` setting to `false`. Learn more in our [FAQ](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).\n\n\n---\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrosoft%2Fvscode-java-dependency","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicrosoft%2Fvscode-java-dependency","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrosoft%2Fvscode-java-dependency/lists"}