Skip to content

Commit dfe576b

Browse files
committed
Update pom and GH actions
Signed-off-by: Christian Tzolov <[email protected]>
1 parent 01aa720 commit dfe576b

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
with:
3030
node-version: '20'
3131

32+
- name: Generate Java docs
33+
run: mvn -Pjavadoc -B javadoc:aggregate
34+
3235
- name: Build with Maven and deploy to Sonatype snapshot repository
3336
env:
3437
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
@@ -37,8 +40,5 @@ jobs:
3740
run: |
3841
mvn -Pjavadoc -Prelease --batch-mode --update-snapshots deploy
3942
40-
- name: Generate Java docs
41-
run: mvn -Pjavadoc -B javadoc:aggregate
42-
4343
- name: Capture project version
4444
run: echo PROJECT_VERSION=$(mvn help:evaluate -Dexpression=project.version --quiet -DforceStdout) >> $GITHUB_ENV

.github/workflows/maven-central-release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Release to Maven Central
22

33
on:
44
workflow_dispatch:
5-
push:
6-
tags:
7-
- 'v*'
85

96
jobs:
107
publish:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,13 +298,13 @@
298298
<extensions>true</extensions>
299299
<configuration>
300300
<publishingServerId>central</publishingServerId>
301-
<!-- <autoPublish>false</autoPublish> -->
301+
<autoPublish>false</autoPublish>
302302
</configuration>
303303
</plugin>
304304
<plugin>
305305
<groupId>org.apache.maven.plugins</groupId>
306306
<artifactId>maven-gpg-plugin</artifactId>
307-
<version>3.1.0</version>
307+
<version>3.2.7</version>
308308
<executions>
309309
<execution>
310310
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)