Wrong java version verification
-------------------------------

                 Key: CXF-985
                 URL: https://issues.apache.org/jira/browse/CXF-985
             Project: CXF
          Issue Type: Bug
          Components: Build system
    Affects Versions: 2.0.1
            Reporter: Diego Pires Plentz


In samples\common_build.xml, the java verification is wrong. It just check if 
java version is equals, but, must be > 1.5. A simple way to solve this is doing 
something like this.

    <condition property="is.java.version.15">
      <or>
        <equals arg1="${ant.java.version}" arg2="1.5"/>
        <equals arg1="${ant.java.version}" arg2="1.6"/>
      </or>
    </condition>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to