Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
"bazelbsp.serverVersion": {
"type": "string",
"default": "3.2.0-20250106-a42f8bf24-NIGHTLY",
"default": "4.0.1",
"description": "Version of the Bazel BSP server to install."
},
"bazelbsp.bazelBinaryPath": {
Expand Down
2 changes: 1 addition & 1 deletion src/server/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {

export const INSTALL_BSP_COMMAND = 'bazelbsp.install'

const MAVEN_PACKAGE = 'org.jetbrains.bsp:bazel-bsp'
const MAVEN_PACKAGE = 'org.virtuslab:bazel-bsp'
const INSTALL_METHOD = 'org.jetbrains.bsp.bazel.install.Install'
const COURSIER_URL_DEFAULT = 'https://git.io/coursier-cli'
const COURSIER_URL_APPLE_SILICON =
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/install.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ load("//aspects:utils/utils.bzl", "create_struct", "file_location", "to_file_loc
const spawnCall = spawnStub.getCalls()[0]
assert.ok(spawnCall.args[0].includes(coursierPath))
assert.ok(spawnCall.args[0].includes(`--jvm ${config.javaVersion}`))
assert.ok(spawnCall.args[0].includes('org.jetbrains.bsp:bazel-bsp:2.0.0'))
assert.ok(spawnCall.args[0].includes('org.virtuslab:bazel-bsp:2.0.0'))
assert.deepStrictEqual(spawnCall.args[1], {
cwd: '/repo/root',
shell: true,
Expand Down