io.github.mictaege.jitter-plugin
Owner: Michael Taege
The jitter-plugin is a Gradle plugin to build and distribute different flavours of an application from a single source base.
https://github.com/mictaege/jitter-plugin
Sources: https://github.com/mictaege/jitter-plugin.git
Version 2024.3 (latest)
2024.3
Created 05 June 2024.
The jitter-plugin is a Gradle plugin to build and distribute different flavours of an application from a single source base.
Using the plugins DSL:
plugins {
id("io.github.mictaege.jitter-plugin") version "2024.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.mictaege:jitter-plugin:2024.3")
}
}
apply(plugin = "io.github.mictaege.jitter-plugin")
Using the plugins DSL:
plugins {
id "io.github.mictaege.jitter-plugin" version "2024.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.mictaege:jitter-plugin:2024.3"
}
}
apply plugin: "io.github.mictaege.jitter-plugin"