io.moderne.rewrite-aggregation
Owner: Moderne, Inc.
Connect your build to Moderne and eliminate tech debt
https://docs.moderne.io/how-to/integrating-private-code
Sources: https://github.com/moderneinc/moderne-gradle-plugin.git
Version 1.3.2 (latest)
1.3.2
Created 01 September 2023.
Connect your build to Moderne and eliminate tech debt
Using the plugins DSL:
plugins {
id("io.moderne.rewrite-aggregation") version "1.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.moderne:moderne-gradle-plugin:1.3.2")
}
}
apply(plugin = "io.moderne.rewrite-aggregation")
Using the plugins DSL:
plugins {
id "io.moderne.rewrite-aggregation" version "1.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.moderne:moderne-gradle-plugin:1.3.2"
}
}
apply plugin: "io.moderne.rewrite-aggregation"