Skip to content

Commit e53fed9

Browse files
committed
fix javadoc
1 parent 7fbe119 commit e53fed9

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343
</body>
4444
</html>' > temp-docs/index.html
4545
46+
- name: List contents of temp-docs
47+
run: ls -R temp-docs
48+
4649
- name: Deploy to GitHub Pages
4750
uses: peaceiris/actions-gh-pages@v3
4851
with:

pom.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,20 @@
7272
<version>3.6.3</version>
7373
<executions>
7474
<execution>
75-
<id>attach-javadocs</id>
76-
<phase>package</phase>
75+
<id>generate-docs</id>
76+
<phase>verify</phase>
7777
<goals>
78-
<goal>jar</goal>
78+
<goal>javadoc</goal>
7979
</goals>
8080
</execution>
8181
</executions>
82+
<configuration>
83+
<failOnError>false</failOnError>
84+
<show>private</show>
85+
<additionalJOptions>
86+
<additionalJOption>-Xdoclint:none</additionalJOption>
87+
</additionalJOptions>
88+
</configuration>
8289
</plugin>
8390
</plugins>
8491
</build>

0 commit comments

Comments
 (0)