main.kotlin.org.jetbrains.bsp.WorkspaceLibraries.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bazel-bsp Show documentation
Show all versions of bazel-bsp Show documentation
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.
package org.jetbrains.bsp
import ch.epfl.scala.bsp4j.BuildTargetIdentifier
public data class LibraryItem(
val id: BuildTargetIdentifier,
val dependencies: List,
val jars: List,
val sourceJars: List,
)
public data class WorkspaceLibrariesResult(
val libraries: List,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy