xyz.tynn.convention.project
Owner: Christian Schmitz
Configures all Android modules, the Maven release and the Versions plugin
https://github.com/tynn-xyz/BuildSrc
Sources: https://github.com/tynn-xyz/BuildSrc
Version 0.0.5 (latest)
0.0.5
Created 03 January 2024.
Configures all Android modules, the Maven release and the Versions plugin
Using the plugins DSL:
plugins {
id("xyz.tynn.convention.project") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.tynn.buildsrc:convention:0.0.5")
}
}
apply(plugin = "xyz.tynn.convention.project")
Using the plugins DSL:
plugins {
id "xyz.tynn.convention.project" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.tynn.buildsrc:convention:0.0.5"
}
}
apply plugin: "xyz.tynn.convention.project"