com.supcis.remote-build-cache
Owner: S&P Computersysteme GmbH
Adds a remote build cache that is configured via environment variables: - GRADLE_REMOTE_BUILD_CACHE_URL: the base URL for the remote build cache - PUSH_TO_REMOTE_BUILD_CACHE: boolean value whether to push to the remote build cache or to use it only for pulling. (optional, default: false) - MAVEN_USER: the username for the maven repository (optional) - MAVEN_PASSWORD: the password for the maven repository (optional) No remote cache is added if no GRADLE_REMOTE_BUILD_CACHE_URL is set.
https://github.com/Element-Logic/gradle-dependency-resolution-plugin
Sources: https://github.com/Element-Logic/gradle-dependency-resolution-plugin.git
Version 1.1.0 (latest)
Created 23 January 2025.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.supcis.remote-build-cache") version "1.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.supcis.remote-build-cache:com.supcis.remote-build-cache.gradle.plugin:1.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.supcis.remote-build-cache") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.supcis.remote-build-cache:com.supcis.remote-build-cache.gradle.plugin:1.1.0") } } apply(plugin = "com.supcis.remote-build-cache")
- Applying plugins to all subprojects .