Search Gradle plugins

com.ullink.nuget

Owner: Itiviti

gradle-nuget-plugin is a Gradle plugin for NuGet, to package (and upload) artifacts

https://github.com/Itiviti/gradle-nuget-plugin

Version 2.6

Created 06 June 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.ullink.nuget") version "2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ullink.gradle:gradle-nuget-plugin:2.6")
  }
}

apply(plugin = "com.ullink.nuget")

Using the plugins DSL:

plugins {
  id "com.ullink.nuget" version "2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ullink.gradle:gradle-nuget-plugin:2.6"
  }
}

apply plugin: "com.ullink.nuget"

Learn how to apply plugins to subprojects