net.wooga.paket-publish
Owner: Manne Endres
This plugin provides tasks for retrieving and publishing [Paket] (https://fsprojects.github.io/Paket/) packages
https://wooga.github.io/atlas-paket/
Sources: https://github.com/wooga/atlas-paket
Version 1.2.1
1.2.1
Created 07 September 2018.
This plugin provides tasks for publishing Nuget packages via Paket
Using the plugins DSL:
plugins {
id("net.wooga.paket-publish") version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-paket:1.2.1")
}
}
apply(plugin = "net.wooga.paket-publish")
Using the plugins DSL:
plugins {
id "net.wooga.paket-publish" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-paket:1.2.1"
}
}
apply plugin: "net.wooga.paket-publish"