Skip to content

Commit 2409b22

Browse files
authored
fix: remove staging plugin from bom module (#2863)
Signed-off-by: Attila Mészáros <[email protected]>
1 parent ad2cd4e commit 2409b22

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

operator-framework-bom/pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-source-plugin</artifactId>
134-
<version>${maven-source-plugin.version}</version>
135134
<executions>
136135
<execution>
137136
<id>attach-sources</id>
@@ -144,7 +143,6 @@
144143
<plugin>
145144
<groupId>org.apache.maven.plugins</groupId>
146145
<artifactId>maven-gpg-plugin</artifactId>
147-
<version>${maven-gpg-plugin.version}</version>
148146
<executions>
149147
<execution>
150148
<id>sign-artifacts</id>
@@ -162,14 +160,15 @@
162160
</executions>
163161
</plugin>
164162
<plugin>
165-
<groupId>org.sonatype.plugins</groupId>
166-
<artifactId>nexus-staging-maven-plugin</artifactId>
167-
<version>${nexus-staging-maven-plugin.version}</version>
163+
<groupId>org.sonatype.central</groupId>
164+
<artifactId>central-publishing-maven-plugin</artifactId>
165+
<version>0.8.0</version>
168166
<extensions>true</extensions>
169167
<configuration>
170-
<serverId>ossrh</serverId>
171-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
172-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
168+
<publishingServerId>central</publishingServerId>
169+
<tokenAuth>true</tokenAuth>
170+
<autoPublish>true</autoPublish>
171+
<waitUntil>published</waitUntil>
173172
</configuration>
174173
</plugin>
175174
</plugins>

0 commit comments

Comments
 (0)