Skip to content

Commit

Permalink
fix(package): Make package refactor recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorinwasher committed Nov 5, 2024
1 parent 3b18764 commit f8949a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ mavenPublishing {
url.set("https://github.com/MockBukkit/openrewrite-recipes")
}
}
signAllPublications()
if (!project.gradle.startParameter.taskNames.any { it.contains("publishToMavenLocal") }) {
signAllPublications()
}
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
}

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/rewrite/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ recipeList:
- org.openrewrite.java.ChangePackage:
oldPackageName: be.seeseemelk.mockbukkit
newPackageName: org.mockbukkit.mockbukkit
recursive: true
...

0 comments on commit f8949a1

Please sign in to comment.