We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92aa2c5 commit 98ea29bCopy full SHA for 98ea29b
buildSrc/src/main/java/org/springframework/pulsar/gradle/publish/PublishArtifactsPlugin.java
@@ -12,7 +12,7 @@ public void apply(Project project) {
12
project.getTasks().register("publishArtifacts", publishArtifacts -> {
13
publishArtifacts.setGroup("Publishing");
14
publishArtifacts.setDescription("Publish the artifacts to either Artifactory or Maven Central based on the version");
15
- if (ProjectUtils.isRelease(project)) {
+ if (ProjectUtils.isRelease(project) && !project.getName().equals("spring-pulsar-docs")) {
16
publishArtifacts.dependsOn("publishToOssrh");
17
}
18
else {
0 commit comments