com.iov42.solutions.artifactoryplugin
Owner: Daniel Mroczka
Plugin for managing credentials for Artifactory
Sources: https://github.com/username/repo
Version 0.0.4 (latest)
Created 30 June 2023.
Plugin for managing credentials for Artifactory
Add this plugin to your build using the plugins DSL:
plugins {
id("com.iov42.solutions.artifactoryplugin") version "0.0.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("com.iov42.solutions.artifactoryplugin:com.iov42.solutions.artifactoryplugin.gradle.plugin:0.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.iov42.solutions.artifactoryplugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.iov42.solutions.artifactoryplugin:com.iov42.solutions.artifactoryplugin.gradle.plugin:0.0.4") } } apply(plugin = "com.iov42.solutions.artifactoryplugin")
- Applying plugins to all subprojects .