gov.chesapeaketechnology.offline-dependencies
Provides tasks to enable building in and deploying to offline environments
Sources: https://github.com/chesapeaketechnology/gradle-offline-dependencies-plugin
Version 0.3.4 (latest)
Created 07 December 2021.
Provides tasks to enable building in and deploying to offline environments
Add this plugin to your build using the plugins DSL:
plugins {
id("gov.chesapeaketechnology.offline-dependencies") version "0.3.4"
}
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("gov.chesapeaketechnology.offline-dependencies:gov.chesapeaketechnology.offline-dependencies.gradle.plugin:0.3.4") }
It can then be applied in the precompiled script plugin:plugins { id("gov.chesapeaketechnology.offline-dependencies") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gov.chesapeaketechnology.offline-dependencies:gov.chesapeaketechnology.offline-dependencies.gradle.plugin:0.3.4") } } apply(plugin = "gov.chesapeaketechnology.offline-dependencies")
- Applying plugins to all subprojects .