Skip to content

Commit 13f5a0a

Browse files
committed
Document Java version requirements correctly
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1610471 13f79535-47bb-0310-9956-ffa450edef68
1 parent 649022f commit 13f5a0a

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ INTRODUCTION:
88
This document contains the release notes for the 1.0 version of Apache Commons CSV.
99
Commons CSV reads and writes files in variations of the Comma Separated Value (CSV) format.
1010

11-
CSV requires at least Java 5.0.
11+
CSV requires at least Java 7.0.
1212

1313
The Apache Commons CSV library provides a simple interface for reading and writing
1414
CSV files of various types.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ CSV files of various types.
121121
<commons.componentid>csv</commons.componentid>
122122
<commons.jira.id>CSV</commons.jira.id>
123123
<commons.jira.pid>12313222</commons.jira.pid>
124-
<maven.compiler.source>1.5</maven.compiler.source>
125-
<maven.compiler.target>1.5</maven.compiler.target>
124+
<maven.compiler.source>1.7</maven.compiler.source>
125+
<maven.compiler.target>1.7</maven.compiler.target>
126126
<!-- Ensure copies work OK (can be removed later when this is in parent POM) -->
127127
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
128128
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

src/changes/release-notes.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ INTRODUCTION:
2525
This document contains the release notes for the ${version} version of Apache Commons CSV.
2626
Commons CSV reads and writes files in variations of the Comma Separated Value (CSV) format.
2727

28-
CSV requires at least Java 5.0.
28+
CSV requires at least Java 7.0.
2929

3030
$introduction.replaceAll("(?<!\015)\012", "
3131
").replaceAll("(?m)^ +","")

src/site/xdoc/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ limitations under the License.
4141
and various <a href="project-reports.html">project reports</a> are provided.
4242
</p>
4343
<p>
44-
The JavaDoc API documents for the <a href="javadocs/api-1.0/index.html">current stable release 1.0</a> [Java 5.0+] can be viewed in a web browser.
44+
The JavaDoc API documents for the <a href="javadocs/api-1.0/index.html">current stable release 1.0</a> [Java 7.0+] can be viewed in a web browser.
4545
</p>
4646
<p>
4747
The <a href="source-repository.html">subversion repository</a> can be

0 commit comments

Comments
 (0)