Skip to content

Commit 6766969

Browse files
committed
fixed javadoc errors while moving to github actions
1 parent 53f976d commit 6766969

2 files changed

Lines changed: 15 additions & 80 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

pom.xml

Lines changed: 15 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,14 @@
1515
<url>https://opensource.org/licenses/ISC</url>
1616
</license>
1717
</licenses>
18-
<parent>
19-
<groupId>org.sonatype.oss</groupId>
20-
<artifactId>oss-parent</artifactId>
21-
<version>5</version>
22-
</parent>
2318
<properties>
24-
<disableDoclint />
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
21+
<maven.compiler.source>8</maven.compiler.source>
22+
<maven.compiler.target>8</maven.compiler.target>
2523
<!-- test dependency versions -->
2624
<easymock-version>3.4</easymock-version>
2725
<junit-version>4.13.2</junit-version>
28-
<htmlunit-version>2.13</htmlunit-version>
2926
</properties>
3027
<scm>
3128
<url>https://github.com/j256/simplecsv</url>
@@ -46,32 +43,6 @@
4643
<timezone>-5</timezone>
4744
</developer>
4845
</developers>
49-
<profiles>
50-
<profile>
51-
<id>disable-java8-doclint</id>
52-
<activation>
53-
<jdk>[1.8,)</jdk>
54-
</activation>
55-
<properties>
56-
<disableDoclint>-Xdoclint:none</disableDoclint>
57-
</properties>
58-
</profile>
59-
<profile>
60-
<id>st</id>
61-
<distributionManagement>
62-
<repository>
63-
<id>sonatype-nexus-staging</id>
64-
<name>Nexus Release Repository</name>
65-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
66-
</repository>
67-
<snapshotRepository>
68-
<id>sonatype-nexus-snapshots</id>
69-
<name>Sonatype Nexus Snapshots</name>
70-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
71-
</snapshotRepository>
72-
</distributionManagement>
73-
</profile>
74-
</profiles>
7546
<build>
7647
<finalName>simplecsv</finalName>
7748
<!-- Resources -->
@@ -102,8 +73,8 @@
10273
<artifactId>maven-compiler-plugin</artifactId>
10374
<version>2.5.1</version>
10475
<configuration>
105-
<source>1.6</source>
106-
<target>1.6</target>
76+
<source>1.8</source>
77+
<target>1.8</target>
10778
</configuration>
10879
</plugin>
10980
<plugin>
@@ -127,28 +98,26 @@
12798
<plugin>
12899
<groupId>org.apache.maven.plugins</groupId>
129100
<artifactId>maven-javadoc-plugin</artifactId>
130-
<version>2.9.1</version>
101+
<version>3.12.0</version>
131102
<executions>
132103
<execution>
133104
<goals>
134105
<goal>jar</goal>
135106
</goals>
136-
<configuration>
137-
<showPackage>false</showPackage>
138-
<additionalparam>-tag inheritDoc:X ${disableDoclint}</additionalparam>
139-
</configuration>
140107
</execution>
141108
</executions>
142109
<configuration>
143-
<showPackage>false</showPackage>
110+
<source>${maven.compiler.source}</source>
144111
<bottom>
145-
This documentation content is licensed by Gray Watson under the
112+
This documentation content is licensed by Gray Watson
113+
under the
146114
&lt;a
147-
href="https://creativecommons.org/licenses/by-sa/3.0/" &gt;Creative Commons Attribution-Share Alike 3.0 License.
115+
href="https://creativecommons.org/licenses/by-sa/3.0/"
116+
&gt;Creative Commons Attribution-Share Alike 3.0
117+
License.
148118
&lt;/a&gt; </bottom>
149-
<additionalparam>-tag inheritDoc:X ${disableDoclint}</additionalparam>
150-
<excludePackageNames>
151-
</excludePackageNames>
119+
<doclint>none</doclint>
120+
<docfilessubdirs>true</docfilessubdirs>
152121
</configuration>
153122
</plugin>
154123
<plugin>

0 commit comments

Comments
 (0)