Search Gradle plugins

Version 1.1.7

Created 17 November 2019.

Plugin for all A'therys Sponge plugins

Using the plugins DSL:

plugins {
  id("com.atherys.gradle") version "1.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.AtherysGradle:AtherysGradle:1.1.7")
  }
}

apply(plugin = "com.atherys.gradle")

Using the plugins DSL:

plugins {
  id "com.atherys.gradle" version "1.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.AtherysGradle:AtherysGradle:1.1.7"
  }
}

apply plugin: "com.atherys.gradle"

Learn how to apply plugins to subprojects