You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2015/04/27 01:30:20 UTC

svn commit: r1676154 - /ofbiz/trunk/framework/base/build.xml

Author: doogie
Date: Sun Apr 26 23:30:20 2015
New Revision: 1676154

URL: http://svn.apache.org/r1676154
Log:
Remove uesless exclusion of ofbiz crypto class compilation.

This was based on the availabily of javax.crypto.Cipher, which became
standard in java 1.4.  We require 1.7.  This is very old.

Modified:
    ofbiz/trunk/framework/base/build.xml

Modified: ofbiz/trunk/framework/base/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/build.xml?rev=1676154&r1=1676153&r2=1676154&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/build.xml (original)
+++ ofbiz/trunk/framework/base/build.xml Sun Apr 26 23:30:20 2015
@@ -63,12 +63,6 @@ under the License.
     </patternset>
 
     <target name="init">
-        <!-- make sure we have crypto packages available -->
-        <condition property="exclude.crypto" value="org/ofbiz/base/crypto/**">
-            <not>
-                <available classname="javax.crypto.Cipher" classpathref="local.class.path"/>
-            </not>
-        </condition>
         <condition property="exclude.cobertura" value="org/ofbiz/base/config/Cobertura*.java">
             <not>
                 <available classname="net.sourceforge.cobertura.instrument.ClassInstrumenter" classpathref="cobertura.class.path"/>
@@ -76,7 +70,6 @@ under the License.
         </condition>
         <patternset id="src.exc.set">
             <exclude name="${exclude.cobertura}"/>
-            <exclude name="${exclude.crypto}"/>
             <exclude name="org/ofbiz/base/util/OfbizJsBsfEngine.java"/>
         </patternset>
     </target>