Search Gradle plugins

net.wooga.paket

This plugin provides tasks for retrieving and publishing [Paket] (https://fsprojects.github.io/Paket/) packages

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

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

Version 4.6.0 (latest)

4.6.0

Created 15 March 2024.

This plugin provides tasks for retrieving,packing and publishing Nuget packages via Paket

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.paket") version "4.6.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.wooga.gradle:paket:4.6.0")
      }
    }
    
    apply(plugin = "net.wooga.paket")
  • Applying plugins to all subprojects .