com.highlylogical.artifactrepo
Owner:
Michael Pigg
Plugin for configuring artifact repositories from configuration file
https://github.com/highlylogical/gradle-artifact-repo
Sources: https://github.com/highlylogical/gradle-artifact-repo
Version 0.2.0 (latest)
Created 08 January 2025.
Plugin for configuring artifact repositories from configuration file
Add this plugin to your build using the plugins DSL:
plugins {
id("com.highlylogical.artifactrepo") version "0.2.0"
}
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.highlylogical.artifactrepo:com.highlylogical.artifactrepo.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.highlylogical.artifactrepo") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.highlylogical.artifactrepo:com.highlylogical.artifactrepo.gradle.plugin:0.2.0") } } apply(plugin = "com.highlylogical.artifactrepo")
- Applying plugins to all subprojects .