Download latest version from https://repo1.maven.org/maven2/io/moderne/moderne-cli/
This is an optional step, but allows us to refer to the latest CLI JAR with just mod
. In git bash add a function to .bashrc
with:
mod() {
java -jar "/path/to/mod.jar" "$@"
}
Connect your CLI to https://app.moderne.io
By connecting the CLI to a Moderne tenant (in this case, the public open source Moderne tenant), we can conveniently sync the recipe catalog available locally to what is in that tenant.
mod config moderne edit https://app.moderne.io --token <YOUR_TOKEN>
This will align your CLI’s locally available recipe marketplace to the recipes currently installed on app.moderne.io.
mod config recipes moderne sync
Or install a single recipt:
mod config recipes moderne install CommonStaticAnalysis
After this is complete, you can see how many recipes are now available:
mod config recipes list
mod build .
mod run . --recipe CommonStaticAnalysis
mod run . --recipe UpgradeToJava17
mod run . --recipe InstanceOfPatternMatch
These recipes will prepare patch files in .moderne folders in each repository, which can then be studied further or applied to the repository contents and committed.
mod git apply . --last-recipe-run
mod git checkout . java-17-upgrade -b
mod git commit . -m "Upgrade to Java 17"
Recipes can produce data tables as a recipe run proceeds. Data tables are columnar data in a schema defined by the recipe.
mod study . --last-recipe-run --data-table SourcesFileResults
Build and install locally for testing:
mvn clean install && mod config recipes jar install com.sap.cds.openrewrite:recipes:1.0.0-SNAPSHOT
Execute it on commmand line:
mod run . --recipe com.sap.cds.openrewrite.recipe.SelectWithStringSearch
mod run . --recipe com.sap.cds.openrewrite.recipe.CdsDataNameSearch
mod run . --recipe com.sap.cds.openrewrite.recipe.CdsDataRewriteRecipes
With maven:
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.recipeArtifactCoordinates=com.sap.cds.openrewrite:recipes:1.0.0-SNAPSHOT -Drewrite.activeRecipes=com.sap.cds.openrewrite.recipe.CdsDataRewriteRecipes
Before you publish your recipe module to an artifact repository, you may want to try it out locally. To do this on the command line, run:
./gradlew publishToMavenLocal
# or ./gradlew pTML
This will publish to your local maven repository, typically under ~/.m2/repository
.
Replace the groupId, artifactId, recipe name, and version in the below snippets with the ones that correspond to your recipe.
In the pom.xml of a different project you wish to test your recipe out in, make your recipe module a plugin dependency of rewrite-maven-plugin:
<project>
<build>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>RELEASE</version>
<configuration>
<activeRecipes>
<recipe>com.yourorg.NoGuavaListsNewArrayList</recipe>
</activeRecipes>
</configuration>
<dependencies>
<dependency>
<groupId>com.yourorg</groupId>
<artifactId>rewrite-recipe-starter</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Unlike Maven, Gradle must be explicitly configured to resolve dependencies from Maven local.
The root project of your Gradle build, make your recipe module a dependency of the rewrite
configuration:
plugins {
id("java")
id("org.openrewrite.rewrite") version("latest.release")
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
rewrite("com.yourorg:rewrite-recipe-starter:latest.integration")
}
rewrite {
activeRecipe("com.yourorg.NoGuavaListsNewArrayList")
}
Now you can run mvn rewrite:run
or gradlew rewriteRun
to run your recipe.
This project is configured to publish to Moderne's open artifact repository (via the publishing
task at the bottom of
the build.gradle.kts
file). If you want to publish elsewhere, you'll want to update that task.
app.moderne.io can draw recipes from the provided repository, as well as from Maven Central.
Note: Running the publish task will not update app.moderne.io, as only Moderne employees can add new recipes. If you want to add your recipe to app.moderne.io, please ask the team in Slack or in Discord.
These other docs might also be useful for you depending on where you want to publish the recipe:
- Sonatype's instructions for publishing to Maven Central
- Gradle's instructions on the Gradle Publishing Plugin.
The .github
directory contains a Github action that will push a snapshot on every successful build.
Run the release action to publish a release version of a recipe.
To build a snapshot, run ./gradlew snapshot publish
to build a snapshot and publish it to Moderne's open artifact repository for inclusion at app.moderne.io.
To build a release, run ./gradlew final publish
to tag a release and publish it to Moderne's open artifact repository for inclusion at app.moderne.io.
We maintain a collection of best practices for writing OpenRewrite recipes. You can apply these recommendations to your recipes by running the following command:
./gradlew rewriteRun -Drewrite.activeRecipe=org.openrewrite.recipes.OpenRewriteBestPractices