net.smoofyuniverse.appcommon-gradle
Owner: Hugo Dupanloup
Gradle plugin for AppCommon based applications.
https://github.com/Yeregorix/AppCommonGradle
Sources: https://github.com/Yeregorix/AppCommonGradle.git
Version 1.1.2 (latest)
1.1.2
Created 09 December 2023.
Gradle plugin for AppCommon based applications.
Using the plugins DSL:
plugins {
id("net.smoofyuniverse.appcommon-gradle") version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.smoofyuniverse:AppCommonGradle:1.1.2")
}
}
apply(plugin = "net.smoofyuniverse.appcommon-gradle")
Using the plugins DSL:
plugins {
id "net.smoofyuniverse.appcommon-gradle" version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.smoofyuniverse:AppCommonGradle:1.1.2"
}
}
apply plugin: "net.smoofyuniverse.appcommon-gradle"