Search Gradle plugins

net.wooga.paket-get

This plugin provides tasks for retrieving Nuget packages via Paket

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

Sources: https://github.com/wooga/atlas-paket

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects