An implementation of the Build Server Protocol for Gradle.
JDK 17 or higher is required to build and launch the Build Server for Gradle.
Following BSP requests are supported in the current implementation:
build/initialize
build/initialized
build/shutdown
build/exit
buildTarget/sources
buildTarget/resources
buildTarget/outputPaths
buildTarget/dependencyModules
buildTarget/dependencySources
buildTarget/compile
buildTarget/cleanCache
buildTarget/javacOptions
buildTarget/scalacOptions
buildTarget/test
workspace/buildTargets
workspace/reload
See ARCHITECTURE.md
The main class of the build server is com.microsoft.java.bs.core.Launcher
. When you launch the server, you need to specify the location of the Gradle plugin via the system property plugin.dir
. By default, you will find the plugin jar at server/build/libs/plugins/plugin-${version}.jar
after building the project.
A Preferences object can be put into the data field of the build/initialize
request for customization. Please check the comments in the code for the meaning of each preference.
The Gradle Build Server supports two types of transport methods: standard input/output and named pipe (unix socket). By default, the server uses the standard input/output transport if no arguments are specified.
To use the named pipe (unix socket) transport, start the server with the argument --pipe=<pipeName>
. If the --pipe=
option is provided but pipeName
left empty, the server defaults to using the standard input/output transport.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Please check CONTRIBUTING.md for more details about how to setup and develop the project.
Assisting documents to explaining the working of Gradle Build Server can be found in developer documentation. This will be helpful for you if you're planning to integrate Gradle Build Server or contribute to the project.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.
The Build Server for Gradle will not send telemetry by itself. But it will send telemetry event to its client. If you don't want this behavior, set the system property disableServerTelemetry
.