io.moderne.rewrite
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 0.31.2
0.31.2
Created 20 December 2022.
Connect your build to Moderne and eliminate tech debt
Using the plugins DSL:
plugins {
id("io.moderne.rewrite") version "0.31.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.moderne:moderne-gradle-plugin:0.31.2")
}
}
apply(plugin = "io.moderne.rewrite")
Using the plugins DSL:
plugins {
id "io.moderne.rewrite" version "0.31.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.moderne:moderne-gradle-plugin:0.31.2"
}
}
apply plugin: "io.moderne.rewrite"