Author: luc
Date: Sun May 18 08:00:52 2008
New Revision: 657568
URL: http://svn.apache.org/viewvc?rev=657568&view=rev
Log:
changed minimum java platform version to Java5
this change was discussed in the following thread:
http://markmail.org/message/3v5imgkeh72ypm5v
Modified:
commons/proper/math/branches/MATH_2_0/pom.xml
commons/proper/math/branches/MATH_2_0/src/site/xdoc/changes.xml
commons/proper/math/branches/MATH_2_0/src/site/xdoc/index.xml
Modified: commons/proper/math/branches/MATH_2_0/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/pom.xml?rev=657568&r1=657567&r2=657568&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_0/pom.xml (original)
+++ commons/proper/math/branches/MATH_2_0/pom.xml Sun May 18 08:00:52 2008
@@ -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>
Modified: commons/proper/math/branches/MATH_2_0/src/site/xdoc/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/site/xdoc/changes.xml?rev=657568&r1=657567&r2=657568&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_0/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/branches/MATH_2_0/src/site/xdoc/changes.xml Sun May 18
08:00:52 2008
@@ -39,6 +39,15 @@
</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
Modified: commons/proper/math/branches/MATH_2_0/src/site/xdoc/index.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/site/xdoc/index.xml?rev=657568&r1=657567&r2=657568&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_0/src/site/xdoc/index.xml (original)
+++ commons/proper/math/branches/MATH_2_0/src/site/xdoc/index.xml Sun May 18
08:00:52 2008
@@ -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>