[jboss-svn-commits] JBoss Portal SVN: r5583 - trunk/identity

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sat Nov 4 06:23:07 EST 2006


Author: bdaw
Date: 2006-11-04 06:23:04 -0500 (Sat, 04 Nov 2006)
New Revision: 5583

Modified:
   trunk/identity/build.xml
Log:
enable back jdk1.4 to run testsuite

Modified: trunk/identity/build.xml
===================================================================
--- trunk/identity/build.xml	2006-11-04 11:04:30 UTC (rev 5582)
+++ trunk/identity/build.xml	2006-11-04 11:23:04 UTC (rev 5583)
@@ -255,7 +255,7 @@
    <!-- generates artifacts used for tests, requires output to be previously run
          -->
    <target name="package-tests" depends="init,
-	                                         output">
+	                                         output" if="HAVE_JDK_1.5">
       <jar jarfile="${build.lib}/portal-identity-test-lib.jar">
          <fileset dir="${build.classes}" includes="org/jboss/portal/test/**"/>
          <fileset dir="${build.resources}/portal-identity-test-jar"/>
@@ -300,7 +300,7 @@
    <target name="help" depends="_default:help"/>
 
 
-   <target name="deploy-ldap" depends="init">
+   <target name="deploy-ldap" depends="init" if="HAVE_JDK_1.5">
       <mkdir dir="${jboss.home}/server/default/conf/opends"/>
       <copy todir="${jboss.home}/server/default/conf/opends" overwrite="true">
          <fileset dir="../test/output/etc/opends"/>
@@ -309,7 +309,7 @@
    </target>
 
    <!-- Undeployment of agent -->
-   <target name="undeploy-ldap" depends="init">
+   <target name="undeploy-ldap" depends="init" if="HAVE_JDK_1.5">
       <delete file="${jboss.home}/server/${portal.deploy.dir}/test-identity.sar"/>
       <delete dir="${jboss.home}/server/default/conf/opends"/>
    </target>




More information about the jboss-svn-commits mailing list