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 4.0.0
4.0.0
Created 27 June 2023.
This plugin provides tasks for packing Nuget packages via Paket
Using the plugins DSL:
plugins {
id("net.wooga.paket-pack") version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:paket:4.0.0")
}
}
apply(plugin = "net.wooga.paket-pack")
Using the plugins DSL:
plugins {
id "net.wooga.paket-pack" version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:paket:4.0.0"
}
}
apply plugin: "net.wooga.paket-pack"