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)
1.1.0
Created 04 October 2023.
plugin for publishing UPM packages to an UPM/NPM artifactory repository
Using the plugins DSL:
plugins {
id("net.wooga.upm-artifactory") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:upm-artifactory:1.1.0")
}
}
apply(plugin = "net.wooga.upm-artifactory")
Using the plugins DSL:
plugins {
id "net.wooga.upm-artifactory" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:upm-artifactory:1.1.0"
}
}
apply plugin: "net.wooga.upm-artifactory"