Consider adding Java to `lsp.json`
Nobody has claimed this yet.
Assessment
- Difficulty
- 5/5
- Estimated time
- Over a week
- Newbie friendliness
- 35/100
Research direction
Start by reading lsp.json and copilot-setup-steps.yml, then compare the existing C# and Go language-server entries. Investigate the jdtls installation, wrapper, launcher requirements, and Maven startup behavior; done means either a validated Java LSP configuration or a documented decision to defer it.
Written by the indexing model from the issue text.
Description
The practice of moving copilot-sdk-java to copilot-sdk revealed that lsp.json does not currently have Java support.
Preliminary research revealed that adding jdtls may be a solution, but more research must be done before committing to this approach.
This work item tracks this matter.
Here is some state.
Assessment: Add Java LSP to lsp.json
Current State
lsp.json configures language servers for the Copilot coding agent (the cloud-based autonomous agent that works in GitHub Actions). It currently provides code intelligence for two languages:
- C# — via
dotnet tool run roslyn-language-server(installed as a .NET tool, scoped to dotnet) - Go — via
gopls serve(available aftersetup-go, scoped to go)
There is no Java entry. This has not been done.
What does it give the coding agent?
When a language server is configured, the Copilot coding agent gets IDE-quality code intelligence (go-to-definition, find-references, diagnostics, rename) while working autonomously. Without it, the agent relies on text search and heuristics for Java code, which is less reliable for a strongly-typed language with deep class hierarchies.
Feasibility Concern: jdtls installation
Unlike gopls (single binary, already on PATH after setup-go) or Roslyn (installable via dotnet tool), Eclipse JDT Language Server (jdtls) requires:
- Downloading a release archive (~70MB) from the Eclipse downloads mirror
- Extracting it to a known location
- Invoking it with a specific launcher jar path and a configuration directory
- Providing a
-dataworkspace path
This makes it harder to configure than the other two, but not impossible.
Plan
Option A: Install jdtls in copilot-setup-steps.yml and add to lsp.json (recommended)
-
Add a step to copilot-setup-steps.yml that downloads and extracts jdtls to a known path (e.g.,
$HOME/jdtls):- name: Install Eclipse JDT Language Server run: | JDTLS_VERSION="1.44.0" JDTLS_TIMESTAMP="202501301718" curl -fsSL "https://www.eclipse.org/downloads/download.php?file=/jdtls/milestones/${JDTLS_VERSION}/jdt-language-server-${JDTLS_VERSION}-${JDTLS_TIMESTAMP}.tar.gz&r=1" \ -o /tmp/jdtls.tar.gz mkdir -p "$HOME/jdtls" tar -xzf /tmp/jdtls.tar.gz -C "$HOME/jdtls" rm /tmp/jdtls.tar.gz -
Create a wrapper script at
.github/scripts/jdtls-wrapper.shthat launches jdtls in stdio mode:#!/bin/bash exec java \ -Declipse.application=org.eclipse.jdt.ls.core.id1 \ -Dosgi.bundles.defaultStartLevel=4 \ -Declipse.product=org.eclipse.jdt.ls.core.product \ -Dlog.level=ALL \ -noverify \ --add-modules=ALL-SYSTEM \ --add-opens java.base/java.util=ALL-UNNAMED \ --add-opens java.base/java.lang=ALL-UNNAMED \ -jar "$HOME/jdtls/plugins/org.eclipse.equinox.launcher_"*.jar \ -configuration "$HOME/jdtls/config_linux" \ -data "$HOME/jdtls-workspace" -
Update lsp.json to add a Java entry:
"java": { "command": "bash", "args": [".github/scripts/jdtls-wrapper.sh"], "fileExtensions": { ".java": "java" }, "rootUri": "java" }
Option B: Skip this (keep it optional/deferred)
The coding agent already works on Java code in this repo without an LSP — it uses mvn verify for compilation feedback and the java-coding-skill SKILL.md for guidance. The agent's productivity without an LSP is "good enough" for the current volume of Java agent work. This could be deferred until the feature is better documented or until a simpler jdtls installation method exists (e.g., a GitHub Action or a single-binary distribution).
Recommendation
Go with Option B (defer) for now, for these reasons:
- The lsp.json feature itself is not publicly documented — the schema, behavior, and supported options are not well-specified.
- jdtls installation is fragile (version pinning, platform-specific config directory:
config_linuxvsconfig_macvsconfig_win, launcher jar glob matching). - The agent runner is Ubuntu-only for Copilot cloud agent, so
config_linuxworks, but this adds a maintenance burden for version updates. - The plan item was marked "(optional)" in the migration plan for exactly these reasons.
- The coding agent already successfully builds and tests Java via
mvn verify— the LSP would provide incremental improvement, not a critical fix.
If you want to proceed anyway
The implementation is straightforward — the three changes above (setup step, wrapper script, lsp.json entry). The main risk is jdtls version rot and the fact that jdtls takes 10-30 seconds to initialize a Maven project, which may slow down the agent's startup. I'd suggest opening a separate low-priority issue to track this and revisit when GitHub documents the lsp.json schema officially.
- Dominant language
- Java
- Stars
- 10.5k
- Forks
- 1.5k
- Avg merge
- 1d 12h
- Merged PRs (30d)
- 133
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from github/copilot-sdk
-
agentic-workflows
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
github/copilot-sdk#2709 · 1 comment ·
-
Difficulty 1/5 Under an hour Newbie friendliness 78/100
github/copilot-sdk#2673 ·
-
bug testing
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
github/copilot-sdk#2628 ·
-
agentic-workflows
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
github/copilot-sdk#2627 · 1 comment ·
-
agentic-workflows
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
github/copilot-sdk#2493 ·
All issues in github/copilot-sdk
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 65/100
-
Difficulty 1/5 Under an hour Newbie friendliness 88/100
checkstyle/test-configs#263 ·
-
bug
Difficulty 1/5 Under an hour Newbie friendliness 90/100
apache/cloudstack#14222 ·
-
[BUG]茶杯方块在取茶时会引发崩溃 Open
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
-
1.0.0-alpha2 Type/Improvement
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
wso2/dpdp-accelerator#272 ·