8000 Prepare for the next release. · spn/commons-csv@7d86ab0 · GitHub
Skip to content

Commit 7d86ab0

Browse files
committed
Prepare for the next release.
1 parent 680398e commit 7d86ab0

3 files changed

Lines changed: 8 additions & 53 deletions

File tree

pom.xml

Lines changed: 2 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,13 @@
2020
<parent>
2121
<groupId>org.apache.commons</groupId>
2222
<artifactId>commons-parent</artifactId>
23-
<version>48</version>
23+
<version>50</version>
2424
</parent>
2525
<artifactId>commons-csv</artifactId>
2626
<version>1.8-SNAPSHOT</version>
2727
<name>Apache Commons CSV</name>
2828
<url>https://commons.apache.org/proper/commons-csv/</url>
29-
<description>
30-
The Apache Commons CSV library provides a simple interface for reading and writing
31-
CSV files of various types.
32-
</description>
29+
<description>The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.</description>
3330

3431
<dependencies>
3532
<dependency>
@@ -386,52 +383,6 @@ CSV files of various types.
386383
</reporting>
387384

388385
<profiles>
389-
<profile>
390-
<id>setup-checkout</id>
391-
<activation>
392-
<file>
393-
<missing>site-content</missing>
394-
</file>
395-
</activation>
396-
<build>
397-
<plugins>
398-
<plugin>
399-
<groupId>org.apache.maven.plugins</groupId>
400-
<artifactId>maven-antrun-plugin</artifactId>
401-
<version>1.8</version>
402-
<executions>
403-
<execution>
404-
<id>prepare-checkout</id>
405-
<phase>pre-site</phase>
406-
<goals>
407-
<goal>run</goal>
408-
</goals>
409-
<configuration>
410-
<tasks>
411-
<exec executable="svn">
412-
<arg line="checkout --depth immediates ${commons.scmPubUrl} ${commons.scmPubCheckoutDirectory}" />
413-
</exec>
414-
415-
<exec executable="svn">
416-
<arg line="update --set-depth exclude ${commons.scmPubCheckoutDirectory}/javadocs" />
417-
</exec>
418-
419-
<pathconvert pathsep=" " property="dirs">
420-
<dirset dir="${commons.scmPubCheckoutDirectory}" includes="*" />
421-
</pathconvert>
422-
<exec executable="svn">
423-
<arg line="update --set-depth infinity ${dirs}" />
424-
</exec>
425-
</tasks>
426-
</configuration>
427-
</execution>
428-
</executions>
429-
</plugin>
430-
</plugins>
431-
</build>
432-
</profile>
433-
434-
435386
<!-- Profile to build and run the benchmarks. Use 'mvn test -Pbenchmark', and add '-Dbenchmark=foo' to run only the foo benchmark -->
436387
<profile>
437388
<id>benchmark</id>

src/site/site.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<item name="Issue Tracking" href="/issue-tracking.html"/>
4040
<item name="Team" href="/team.html"/>
4141
<item name="Javadoc" href="/apidocs/index.html"/>
42+
<item name="Javadoc 1.8" href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.8"/>
4243
<item name="Javadoc 1.7" href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.7"/>
4344
<item name="Javadoc 1.6" href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.6"/>
4445
<item name="Javadoc 1.5" href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.5"/>

src/site/xdoc/index.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ The Javadoc API documents are available online:
5151
</p>
5252
<ul>
5353
<li><a href="apidocs/index.html">Javadoc trunk</a></li>
54+
<li><a href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.8">Javadoc 1.8</a></li>
55+
<li><a href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.7">Javadoc 1.7</a></li>
5456
<li><a href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.6">Javadoc 1.6</a></li>
5557
<li><a href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.5">Javadoc 1.5</a></li>
5658
<li><a href="https://javadoc.io/doc/org.apache.commons/commons-csv/1.4">Javadoc 1.4</a></li>
@@ -67,7 +69,8 @@ The <a href="scm.html">git repository</a> can be
6769
<!-- ================================================== -->
6870
<section name="Releases">
6971
<ul>
70-
<li><a href="https://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.7 (mirrors)</a> requires Java 8</li>
72+
<li><a href="https://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.8 (mirrors)</a> requires Java 8</li>
73+
<li><a href="https://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.7 (archives)</a> requires Java 8</li>
7174
<li><a href="https://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.6 (archives)</a> requires Java 7</li>
7275
<li><a href="https://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.5 (archives)</a> requires Java 7</li>
7376
<li><a href="https://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.4 (archives)</a> requires Java 6</li>
@@ -92,7 +95,7 @@ For previous releases, see the <a href="https://archive.apache.org/dist/commons/
9295
<pre>&lt;dependency&gt;
9396
&lt;groupId&gt;org.apache.commons&lt;/groupId&gt;
9497
&lt;artifactId&gt;commons-csv&lt;/artifactId&gt;
95-
&lt;version&gt;1.7&lt;/version&gt;
98+
&lt;version&gt;1.8&lt;/version&gt;
9699
&lt;/dependency&gt;</pre>
97100
</p>
98101
<p>

0 commit comments

Comments
 (0)