Search Gradle plugins

Version 1.1.1

Created 06 December 2023.

Gradle plugin for AppCommon based applications.

Using the plugins DSL:

plugins {
  id("net.smoofyuniverse.appcommon-gradle") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.smoofyuniverse:AppCommonGradle:1.1.1")
  }
}

apply(plugin = "net.smoofyuniverse.appcommon-gradle")

Using the plugins DSL:

plugins {
  id "net.smoofyuniverse.appcommon-gradle" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.smoofyuniverse:AppCommonGradle:1.1.1"
  }
}

apply plugin: "net.smoofyuniverse.appcommon-gradle"

Learn how to apply plugins to subprojects