Skip to content

Commit cf2348e

Browse files
bfgslandelle
authored andcommitted
Updated maven-javadoc-plugin to 3.0.1 (#1621)
Before this patch build was using outdated javadoc plugin which failed build on OracleJDK 8 due to javadoc generation error on `extras/retrofit2` module. Builds on OpenJDK 8 finished successfully. Changes: * maven-javadoc-plugin version bump to `3.0.1` * added javadoc generation to travis build recipe
1 parent fea53b0 commit cf2348e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ before_script:
66
- travis/before_script.sh
77

88
script:
9-
- mvn test -Ptest-output
9+
- mvn test javadoc:javadoc -Ptest-output
1010
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
1111
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
1212

Diff for: pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@
174174
</execution>
175175
</executions>
176176
</plugin>
177+
<plugin>
178+
<groupId>org.apache.maven.plugins</groupId>
179+
<artifactId>maven-javadoc-plugin</artifactId>
180+
<version>3.0.1</version>
181+
<configuration>
182+
<doclint>none</doclint>
183+
</configuration>
184+
</plugin>
177185
</plugins>
178-
<pluginManagement>
179-
<plugins>
180-
<plugin>
181-
<artifactId>maven-javadoc-plugin</artifactId>
182-
<version>2.10.4</version>
183-
</plugin>
184-
</plugins>
185-
</pluginManagement>
186186
</build>
187187
<profiles>
188188
<profile>

0 commit comments

Comments
 (0)