Search Gradle plugins

Version 0.8.0-rc.7

Created 04 January 2021.

This plugin provides tasks for uploading a build to AppCenter

Using the plugins DSL:

plugins {
  id("net.wooga.appcenter") version "0.8.0-rc.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.wooga.gradle:atlas-appcenter:0.8.0-rc.7")
  }
}

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

Using the plugins DSL:

plugins {
  id "net.wooga.appcenter" version "0.8.0-rc.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.wooga.gradle:atlas-appcenter:0.8.0-rc.7"
  }
}

apply plugin: "net.wooga.appcenter"

Learn how to apply plugins to subprojects