Skip to content

Commit 1ec1035

Browse files
committed
Fix javadoc generation
1 parent 8bf4049 commit 1ec1035

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

pom.xml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@
100100
<commons.module.name>org.apache.commons.csv</commons.module.name>
101101
<commons.jira.id>CSV</commons.jira.id>
102102
<commons.jira.pid>12313222</commons.jira.pid>
103-
<maven.compiler.source>1.8</maven.compiler.source>
104-
<maven.compiler.target>1.8</maven.compiler.target>
103+
<maven.compiler.source>8</maven.compiler.source>
104+
<maven.compiler.target>8</maven.compiler.target>
105105
<!-- Ensure copies work OK (can be removed later when this is in parent POM) -->
106106
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
107107
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -152,6 +152,18 @@
152152
<includeTestSourceDirectory>true</includeTestSourceDirectory>
153153
</configuration>
154154
</plugin>
155+
<plugin>
156+
<groupId>org.apache.maven.plugins</groupId>
157+
<artifactId>maven-javadoc-plugin</artifactId>
158+
<version>${commons.javadoc.version}</version>
159+
<configuration combine.self="append">
160+
<failOnWarnings>true</failOnWarnings>
161+
<links combine.self="override">
162+
<!-- this link is problematic <link>${commons.javadoc.java.link}</link> -->
163+
<link>${commons.javadoc.javaee.link}</link>
164+
</links>
165+
</configuration>
166+
</plugin>
155167
<plugin>
156168
<groupId>org.apache.maven.plugins</groupId>
157169
<artifactId>maven-pmd-plugin</artifactId>
@@ -391,10 +403,10 @@
391403
<scope>test</scope>
392404
</dependency>
393405

394-
<!--
406+
<!--
395407
Not in Maven Central, download manually from http://kasparov.skife.org/csv/csv-1.0.jar and install with:
396408
curl https://repo.marketcetera.org/maven/org/skife/kasparov/csv/1.0/csv-1.0.jar -o $TMPDIR/csv-1.0.jar
397-
mvn install:install-file -Dfile=$TMPDIR/csv-1.0.jar -DgroupId=org.skife.kasparov -DartifactId=csv -Dversion=1.0 -Dpackaging=jar
409+
mvn install:install-file -Dfile=$TMPDIR/csv-1.0.jar -DgroupId=org.skife.kasparov -DartifactId=csv -Dversion=1.0 -Dpackaging=jar
398410
-->
399411
<dependency>
400412
<groupId>org.skife.kasparov</groupId>
@@ -491,7 +503,7 @@
491503
<email>ggregory at apache.org</email>
492504
<url>https://www.garygregory.com</url>
493505
<organization>The Apache Software Foundation</organization>
494-
<organizationUrl>https://www.apache.org/</organizationUrl>
506+
<organizationUrl>https://www.apache.org/</organizationUrl>
495507
<roles>
496508
<role>PMC Member</role>
497509
</roles>

0 commit comments

Comments
 (0)