org.hiero.gradle.feature.build-cache
                  Owner:
                  
                    
                    LFDT bot account
                  
                
Standard configuration for a remote build cache that is pushed to from CI and pulled from everywhere
https://github.com/hiero-ledger/hiero-gradle-conventions
Sources: https://github.com/hiero-ledger/hiero-gradle-conventions
Version 0.3.8
Created 27 March 2025.
                Standard configuration for a remote build cache that is pushed to from CI and pulled from everywhere
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.hiero.gradle.feature.build-cache") version "0.3.8"
}
              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("org.hiero.gradle.feature.build-cache:org.hiero.gradle.feature.build-cache.gradle.plugin:0.3.8") }It can then be applied in the precompiled script plugin:plugins { id("org.hiero.gradle.feature.build-cache") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hiero.gradle.feature.build-cache:org.hiero.gradle.feature.build-cache.gradle.plugin:0.3.8") } } apply(plugin = "org.hiero.gradle.feature.build-cache") - Applying plugins to all subprojects .