Author: britter
Date: Tue Nov 24 20:00:15 2015
New Revision: 1716238
URL: http://svn.apache.org/viewvc?rev=1716238&view=rev
Log:
JXPATH-184: Update to Java 7
This also closes #2 from github, which was about reverting
to Java 1.4 APIs.
Further cleanup of the project is necessary, such as using
newer language features and new APIs available in Java 7.
Modified:
commons/proper/jxpath/trunk/pom.xml
commons/proper/jxpath/trunk/src/changes/changes.xml
Modified: commons/proper/jxpath/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/pom.xml?rev=1716238&r1=1716237&r2=1716238&view=diff
==============================================================================
--- commons/proper/jxpath/trunk/pom.xml (original)
+++ commons/proper/jxpath/trunk/pom.xml Tue Nov 24 20:00:15 2015
@@ -71,8 +71,8 @@ under the License.
</scm>
<properties>
- <maven.compiler.source>1.3</maven.compiler.source>
- <maven.compiler.target>1.3</maven.compiler.target>
+ <maven.compiler.source>1.7</maven.compiler.source>
+ <maven.compiler.target>1.7</maven.compiler.target>
<commons.componentid>jxpath</commons.componentid>
<!-- should agree with project.version for releases: -->
Modified: commons/proper/jxpath/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/changes/changes.xml?rev=1716238&r1=1716237&r2=1716238&view=diff
==============================================================================
--- commons/proper/jxpath/trunk/src/changes/changes.xml (original)
+++ commons/proper/jxpath/trunk/src/changes/changes.xml Tue Nov 24 20:00:15 2015
@@ -47,6 +47,9 @@ The <action> type attribute can be add,u
<body>
<!-- The release date is the date RC is cut -->
<release version="1.4" date="2014-??-??" description="New features and bug
fixes.">
+ <action issue="JXPATH-184" dev="britter" type="update" >
+ Update to Java 7
+ </action>
<action issue="JXPATH-172" dev="britter" type="update" due-to="Michele
Vivoda">
Clarify JavaDoc of JXPathContext#getPointer
</action>