Runtime delivery & packaging
The extension bundles both the language server JAR and a trimmed JRE per platform so that teams can run the tooling without installing Java. The expected folder layout inside the packaged extension is:
client/
server/
interlis-lsp-<version>-all.jar
jre/
darwin-arm64/
darwin-x64/
linux-x64/
linux-arm64/
win32-x64/
bin/java(.exe)
To refresh runtimes:
- Produce a new fat JAR with
./gradlew shadowJar
(output lives inbuild/libs/
). - Copy platform-specific JREs into
client/server/jre/<platform>/
. - Update
client/package.json
version if you plan to publish. - Package the extension via:
cd client
npm install
npm run build
npx vsce package
For CI packaging see the build and publish
GitHub Actions workflow in the LSP repository, which automatically runs
vsce publish
when the VS_MARKETPLACE_TOKEN
secret is configured.