changed minimum java platform version to Java5

this change was discussed in the following thread:
http://markmail.org/message/3v5imgkeh72ypm5v

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@657568 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-05-18 15:00:52 +00:00
parent dca7fe58ee
commit 6ebc980cbc
3 changed files with 18 additions and 3 deletions

View File

@ -22,7 +22,7 @@
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>9</version>
<version>10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>commons-math</groupId>
@ -153,7 +153,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<version>4.4</version>
<scope>test</scope>
</dependency>
</dependencies>
@ -164,6 +164,8 @@
<commons.binary.suffix></commons.binary.suffix>
<commons.jira.id>MATH</commons.jira.id>
<commons.jira.pid>12310485</commons.jira.pid>
<maven.compile.source>1.5</maven.compile.source>
<maven.compile.target>1.5</maven.compile.target>
</properties>
<build>
@ -281,6 +283,8 @@
<rulesets>
<ruleset>checkstyle.xml</ruleset>
</rulesets>
<linkXref>true</linkXref>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>

View File

@ -39,6 +39,15 @@ The <action> type attribute can be add,update,fix,remove.
</properties>
<body>
<release version="2.0" date="TBD" description="TBD">
<action dev="luc" type="update" >
Starting with version 2.0 of the library, the minimal version of the Java
platform required to compile and use commons-math is Java 5. This version
is widely deployed now on many systems. It brings new important features
for specific mathematical developments, for example new functions (log10,
cbrt, ulp, signum, cosh, sinh, tanh, hypot, expm1, log1p), autoboxing,
MathContext or RoundingMode. It also brings important features for general
development, for example enums, generics or annotations.
</action>
<action dev="luc" type="add" >
Switching functions can now throw dedicated SwitchException from all their
method. At upper call level, the various ODE integrators handle these new

View File

@ -57,7 +57,9 @@
</li>
<li>
Limited dependencies. No external dependencies beyond Commons
components and the core Java 2 platform.
components and the core Java platform (at least Java 1.3 up to
version 1.2 of the library, at least Java 5 starting with version
2.0 of the library).
</li>
</ol>
</p>