All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.kotlin.org.jetbrains.bsp.protocol.BspConstants.kt Maven / Gradle / Ivy

Go to download

An implementation of the Build Server Protocol for Bazel. Allows clients such as IntelliJ to obtain build specific information in order to improve the experience of users in the IDE.

There is a newer version: 3.2.0-20241118-a099775e0-NIGHTLY
Show newest version
package org.jetbrains.bsp.protocol

import ch.epfl.scala.bsp4j.BuildClientCapabilities

const val BSP_CONNECTION_DIR: String = ".bsp"

const val BSP_DISPLAY_NAME: String = "BSP"

const val BSP_CLIENT_NAME: String = "IntelliJ-BSP"

const val BSP_CLIENT_VERSION: String = "2024.1-EAP"

const val BSP_VERSION: String = "2.1.0"

val CLIENT_CAPABILITIES: BuildClientCapabilities =
  BuildClientCapabilities(listOf("java", "kotlin", "scala", "python")).apply {
    jvmCompileClasspathReceiver = true
  }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy