Search Gradle plugins

net.wooga.paket-get

This plugin provides tasks for retrieving Nuget packages via Paket

https://wooga.github.io/atlas-paket/

Version 0.10.1

Created 11 January 2018.

This plugin provides tasks for retrieving Nuget packages via Paket

Using the plugins DSL:

plugins {
  id("net.wooga.paket-get") version "0.10.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.wooga.gradle:atlas-paket:0.10.1")
  }
}

apply(plugin = "net.wooga.paket-get")

Using the plugins DSL:

plugins {
  id "net.wooga.paket-get" version "0.10.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.wooga.gradle:atlas-paket:0.10.1"
  }
}

apply plugin: "net.wooga.paket-get"

Learn how to apply plugins to subprojects