com.atkinsondev.object-store-cache
                  Owner:
                  
                    
                    Craig Atkinson
                  
                
Use an S3-compatible object store as a Gradle build cache backend
https://github.com/craigatk/object-store-cache-plugin
Sources: https://github.com/craigatk/object-store-gradle-cache
Version 0.0.6
Created 21 March 2020.
                Use an S3-compatible object store as a Gradle build cache backend
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.atkinsondev.object-store-cache") version "0.0.6"
}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.atkinsondev.object-store-cache:com.atkinsondev.object-store-cache.gradle.plugin:0.0.6") }It can then be applied in the precompiled script plugin:plugins { id("com.atkinsondev.object-store-cache") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.atkinsondev.object-store-cache:com.atkinsondev.object-store-cache.gradle.plugin:0.0.6") } } apply(plugin = "com.atkinsondev.object-store-cache")
- Applying plugins to all subprojects .