Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openrewrite/rewrite-recipe-bom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.0
Choose a base ref
...
head repository: openrewrite/rewrite-recipe-bom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.1
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 14, 2025

  1. Add Gradle Plugin Portal repository so that the OpenRewrite Gradle pl…

    …ugin's version can be resolved
    shanman190 committed Jan 14, 2025
    Copy the full SHA
    c5df800 View commit details
  2. Workaround PR review workflow

    timtebeek committed Jan 14, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9c4b744 View commit details
  3. Remove proprietary modules from BOM (#36)

    timtebeek authored Jan 14, 2025
    Copy the full SHA
    4416cc6 View commit details
Showing with 8 additions and 17 deletions.
  1. +8 −17 build.gradle.kts
25 changes: 8 additions & 17 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -15,6 +15,10 @@ javaPlatform {

group = "org.openrewrite.recipe"

repositories {
gradlePluginPortal()
}

val latest = if (project.hasProperty("releasing")) "latest.release" else "latest.integration"
dependencies {
api(platform("org.openrewrite:rewrite-bom:$latest"))
@@ -33,44 +37,27 @@ dependencies {

api("org.openrewrite.meta:rewrite-analysis:$latest")

api("org.openrewrite.recipe:rewrite-ai-search:$latest")
api("org.openrewrite.recipe:rewrite-android:$latest")
api("org.openrewrite.recipe:rewrite-all:$latest")
api("org.openrewrite.recipe:rewrite-apache:$latest")
api("org.openrewrite.recipe:rewrite-circleci:$latest")
api("org.openrewrite.recipe:rewrite-codemods:$latest")
api("org.openrewrite.recipe:rewrite-codemods-ng:$latest")
api("org.openrewrite.recipe:rewrite-compiled-analysis:$latest")
api("org.openrewrite.recipe:rewrite-comprehension:$latest")
api("org.openrewrite.recipe:rewrite-concourse:$latest")
api("org.openrewrite.recipe:rewrite-cucumber-jvm:$latest")
api("org.openrewrite.recipe:rewrite-docker:$latest")
api("org.openrewrite.recipe:rewrite-dotnet:$latest")
api("org.openrewrite.recipe:rewrite-feature-flags:$latest")
api("org.openrewrite.recipe:rewrite-github-actions:$latest")
api("org.openrewrite.recipe:rewrite-gitlab:$latest")
api("org.openrewrite.recipe:rewrite-hibernate:$latest")
api("org.openrewrite.recipe:rewrite-jackson:$latest")
api("org.openrewrite.recipe:rewrite-java-dependencies:$latest")
api("org.openrewrite.recipe:rewrite-java-security:$latest")
api("org.openrewrite.recipe:rewrite-jenkins:$latest")
api("org.openrewrite.recipe:rewrite-kubernetes:$latest")
api("org.openrewrite.recipe:rewrite-liberty:$latest")
api("org.openrewrite.recipe:rewrite-logging-frameworks:$latest")
api("org.openrewrite.recipe:rewrite-micrometer:$latest")
api("org.openrewrite.recipe:rewrite-micronaut:$latest")
api("org.openrewrite.recipe:rewrite-migrate-java:$latest")
api("org.openrewrite.recipe:rewrite-nodejs:$latest")
api("org.openrewrite.recipe:rewrite-okhttp:$latest")
api("org.openrewrite.recipe:rewrite-openapi:$latest")
api("org.openrewrite.recipe:rewrite-quarkus:$latest")
api("org.openrewrite.recipe:rewrite-reactive-streams:$latest")
api("org.openrewrite.recipe:rewrite-recommendations:$latest")
api("org.openrewrite.recipe:rewrite-spring:$latest")
api("org.openrewrite.recipe:rewrite-sql:$latest")
api("org.openrewrite.recipe:rewrite-static-analysis:$latest")
api("org.openrewrite.recipe:rewrite-struts:$latest")
api("org.openrewrite.recipe:rewrite-terraform:$latest")
api("org.openrewrite.recipe:rewrite-testing-frameworks:$latest")
api("org.openrewrite.recipe:rewrite-third-party:$latest")
}
@@ -105,3 +92,7 @@ tasks.register("test") {
}.resolve()
}
}

tasks.register("licenseFormat") {
println("License format task not implemented")
}