net.wooga.paket-pack
Owner: Manne Endres
This plugin provides tasks for packing Nuget packages via Paket
https://wooga.github.io/atlas-paket/
Sources: https://github.com/wooga/atlas-paket
Version 0.7.0
0.7.0
Created 25 July 2017.
This plugin provides tasks for packing Nuget packages via Paket
Using the plugins DSL:
plugins {
id("net.wooga.paket-pack") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-paket:0.7.0")
}
}
apply(plugin = "net.wooga.paket-pack")
Using the plugins DSL:
plugins {
id "net.wooga.paket-pack" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-paket:0.7.0"
}
}
apply plugin: "net.wooga.paket-pack"