Skip to content

Commit 1dcc622

Browse files
authored
Maven publish fix (#114)
Maven publish fix --------- Signed-off-by: Krzysztof Chmielewski <[email protected]>
1 parent 5348a25 commit 1dcc622

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ jobs:
5151
if: github.event.release
5252
run: mvn deploy -P release
5353
env:
54-
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
55-
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
54+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_TOKEN_USERNAME }}
55+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_TOKEN_PASSWORD }}
5656
GPG_PRIVATE_KEY_PASSWORD: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ under the License.
496496
<plugin>
497497
<groupId>org.apache.maven.plugins</groupId>
498498
<artifactId>maven-javadoc-plugin</artifactId>
499-
<version>3.1.1</version>
499+
<version>3.6.3</version>
500500
<configuration>
501501
<links>
502502
<link>https://nightlies.apache.org/flink/flink-docs-release-1.15/api/java/</link>
@@ -515,7 +515,7 @@ under the License.
515515
<plugin>
516516
<groupId>org.apache.maven.plugins</groupId>
517517
<artifactId>maven-source-plugin</artifactId>
518-
<version>3.2.0</version>
518+
<version>3.3.0</version>
519519
<executions>
520520
<execution>
521521
<id>attach-sources</id>
@@ -541,7 +541,7 @@ under the License.
541541
<plugin>
542542
<groupId>org.apache.maven.plugins</groupId>
543543
<artifactId>maven-gpg-plugin</artifactId>
544-
<version>3.0.1</version>
544+
<version>3.1.0</version>
545545
<configuration>
546546
<gpgArguments>
547547
<arg>--pinentry-mode</arg>

0 commit comments

Comments
 (0)