net.wooga.upm-artifactory
Owner: Manne Endres
plugin for publishing UPM packages to an UPM/NPM artifactory repository
https://wooga.github.io/atlas-upm-artifactory/
Sources: https://github.com/wooga/atlas-upm-artifactory
Version 1.1.0 (latest)
Created 04 October 2023.
plugin for publishing UPM packages to an UPM/NPM artifactory repository
Add this plugin to your build using the plugins DSL:
plugins {
id("net.wooga.upm-artifactory") version "1.1.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("net.wooga.upm-artifactory:net.wooga.upm-artifactory.gradle.plugin:1.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.wooga.upm-artifactory") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.wooga.upm-artifactory:net.wooga.upm-artifactory.gradle.plugin:1.1.0") } } apply(plugin = "net.wooga.upm-artifactory")
- Applying plugins to all subprojects .