com.supcis.resolution
Owner:
S&P Computersysteme GmbH
Applies all three resolution plugins: JavaToolchainResolver, DependencyResolutionPlugin and PluginResolutionPlugin. This is just for convenience.
https://github.com/Element-Logic/gradle-dependency-resolution-plugin
Sources: https://github.com/Element-Logic/gradle-dependency-resolution-plugin.git
Version 1.0.1
Created 09 December 2024.
Applies all three resolution plugins: JavaToolchainResolver, DependencyResolutionPlugin
and PluginResolutionPlugin. This is just for convenience.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.supcis.resolution") version "1.0.1"
}
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.resolution:com.supcis.resolution.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.supcis.resolution") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.supcis.resolution:com.supcis.resolution.gradle.plugin:1.0.1") } } apply(plugin = "com.supcis.resolution")
- Applying plugins to all subprojects .