diff --git a/build.gradle.kts b/build.gradle.kts index 1912f15..b06d618 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -161,6 +161,7 @@ defaultTasks = mutableListOf("run") tasks.withType { dependsOn("run") + all = true sourceDir = file("build/docs") outputDir = file("build/html") doLast { diff --git a/src/main/kotlin/org/openrewrite/RecipeOption.kt b/src/main/kotlin/org/openrewrite/RecipeOption.kt index a3200d9..fce26d4 100644 --- a/src/main/kotlin/org/openrewrite/RecipeOption.kt +++ b/src/main/kotlin/org/openrewrite/RecipeOption.kt @@ -1,8 +1,11 @@ package org.openrewrite +import com.fasterxml.jackson.annotation.JsonIgnore + data class RecipeOption( val name: String, val type: String, + @JsonIgnore val example: String?, val required: Boolean ): Comparable {