Search Gradle plugins

net.wooga.paket-publish

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

Using the plugins DSL:

plugins {
  id("net.wooga.paket-publish") version "0.10.0"
}

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.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "net.wooga.paket-publish" version "0.10.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects