Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 7ce25e9

Browse files
committed
Fixed Javadoc build which failed after modularization
1 parent 72f9060 commit 7ce25e9

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Publish package
2828
run: |
29-
mvn javadoc:javadoc
29+
mvn package javadoc:javadoc
3030
mvn --batch-mode deploy
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@
190190
</execution>
191191
</executions>
192192
</plugin>
193+
193194
<plugin>
194195
<groupId>org.apache.maven.plugins</groupId>
195196
<artifactId>maven-source-plugin</artifactId>
@@ -203,6 +204,19 @@
203204
</execution>
204205
</executions>
205206
</plugin>
207+
<plugin>
208+
<groupId>org.apache.maven.plugins</groupId>
209+
<artifactId>maven-javadoc-plugin</artifactId>
210+
<version>3.6.2</version>
211+
<executions>
212+
<execution>
213+
<id>attach-javadocs</id>
214+
<goals>
215+
<goal>jar</goal>
216+
</goals>
217+
</execution>
218+
</executions>
219+
</plugin>
206220
</plugins>
207221
</build>
208222

0 commit comments

Comments
 (0)