Search Gradle plugins

Version 3.0.1 (latest)

Created 11 March 2024.

This plugin provides tasks for uploading a build to AppCenter

Using the plugins DSL:

plugins {
  id("net.wooga.appcenter") version "3.0.1"
}

Using legacy plugin application:

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

apply(plugin = "net.wooga.appcenter")

Using the plugins DSL:

plugins {
  id "net.wooga.appcenter" version "3.0.1"
}

Using legacy plugin application:

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

apply plugin: "net.wooga.appcenter"

Learn how to apply plugins to subprojects