|
15 | 15 | <url>https://opensource.org/licenses/ISC</url> |
16 | 16 | </license> |
17 | 17 | </licenses> |
18 | | - <parent> |
19 | | - <groupId>org.sonatype.oss</groupId> |
20 | | - <artifactId>oss-parent</artifactId> |
21 | | - <version>5</version> |
22 | | - </parent> |
23 | 18 | <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> |
25 | 23 | <!-- test dependency versions --> |
26 | 24 | <easymock-version>3.4</easymock-version> |
27 | 25 | <junit-version>4.13.2</junit-version> |
28 | | - <htmlunit-version>2.13</htmlunit-version> |
29 | 26 | </properties> |
30 | 27 | <scm> |
31 | 28 | <url>https://github.com/j256/simplecsv</url> |
|
46 | 43 | <timezone>-5</timezone> |
47 | 44 | </developer> |
48 | 45 | </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> |
75 | 46 | <build> |
76 | 47 | <finalName>simplecsv</finalName> |
77 | 48 | <!-- Resources --> |
|
102 | 73 | <artifactId>maven-compiler-plugin</artifactId> |
103 | 74 | <version>2.5.1</version> |
104 | 75 | <configuration> |
105 | | - <source>1.6</source> |
106 | | - <target>1.6</target> |
| 76 | + <source>1.8</source> |
| 77 | + <target>1.8</target> |
107 | 78 | </configuration> |
108 | 79 | </plugin> |
109 | 80 | <plugin> |
|
127 | 98 | <plugin> |
128 | 99 | <groupId>org.apache.maven.plugins</groupId> |
129 | 100 | <artifactId>maven-javadoc-plugin</artifactId> |
130 | | - <version>2.9.1</version> |
| 101 | + <version>3.12.0</version> |
131 | 102 | <executions> |
132 | 103 | <execution> |
133 | 104 | <goals> |
134 | 105 | <goal>jar</goal> |
135 | 106 | </goals> |
136 | | - <configuration> |
137 | | - <showPackage>false</showPackage> |
138 | | - <additionalparam>-tag inheritDoc:X ${disableDoclint}</additionalparam> |
139 | | - </configuration> |
140 | 107 | </execution> |
141 | 108 | </executions> |
142 | 109 | <configuration> |
143 | | - <showPackage>false</showPackage> |
| 110 | + <source>${maven.compiler.source}</source> |
144 | 111 | <bottom> |
145 | | - This documentation content is licensed by Gray Watson under the |
| 112 | + This documentation content is licensed by Gray Watson |
| 113 | + under the |
146 | 114 | <a |
147 | | - href="https://creativecommons.org/licenses/by-sa/3.0/" >Creative Commons Attribution-Share Alike 3.0 License. |
| 115 | + href="https://creativecommons.org/licenses/by-sa/3.0/" |
| 116 | + >Creative Commons Attribution-Share Alike 3.0 |
| 117 | + License. |
148 | 118 | </a> </bottom> |
149 | | - <additionalparam>-tag inheritDoc:X ${disableDoclint}</additionalparam> |
150 | | - <excludePackageNames> |
151 | | - </excludePackageNames> |
| 119 | + <doclint>none</doclint> |
| 120 | + <docfilessubdirs>true</docfilessubdirs> |
152 | 121 | </configuration> |
153 | 122 | </plugin> |
154 | 123 | <plugin> |
|
0 commit comments