Jvm Toolchain Management
Dynamic extension added to ToolchainManagement
at runtime, by the jvm-toolchain-management
plugin. Provides a jvm
block to configure the ordered list of Java toolchain repositories to use for auto-provisioning.
Since
7.6
Functions
Link copied to clipboard
Returns the handler for the ordered list of configured
JavaToolchainRepository
implementations.Link copied to clipboard
org.gradle.api.NamedDomainObjectList based handler for configuring an ordered collection of Java toolchain repositories:
toolchainManagement {
jvm {
javaRepositories {
repository('registry1') {
resolverClass = com.example.CustomToolchainRegistry1
credentials {
username "user"
password "password"
}
authentication {
digest(BasicAuthentication)
}
}
repository('registry2') {
resolverClass = com.example.CustomToolchainRegistry2
}
}
}
Content copied to clipboard