[jboss-cvs] JBossAS SVN: r76004 - branches/JBPAPP_4_3_0_GA_CC/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 18 15:42:56 EDT 2008


Author: anil.saldhana at jboss.com
Date: 2008-07-18 15:42:55 -0400 (Fri, 18 Jul 2008)
New Revision: 76004

Modified:
   branches/JBPAPP_4_3_0_GA_CC/build/build.xml
Log:
JBOSSCC-8: copy production into cc

Modified: branches/JBPAPP_4_3_0_GA_CC/build/build.xml
===================================================================
--- branches/JBPAPP_4_3_0_GA_CC/build/build.xml	2008-07-18 17:44:06 UTC (rev 76003)
+++ branches/JBPAPP_4_3_0_GA_CC/build/build.xml	2008-07-18 19:42:55 UTC (rev 76004)
@@ -289,6 +289,11 @@
     <property name="install.minimal.deploy" value="${install.minimal}/deploy"/>
     <property name="install.minimal.conf" value="${install.minimal}/conf"/>
 
+    <property name="install.cc" value="${install.server}/cc"/>
+    <property name="install.cc.lib" value="${install.cc}/lib"/>
+    <property name="install.cc.deploy" value="${install.cc}/deploy"/>
+    <property name="install.cc.conf" value="${install.cc}/conf"/>
+
     <!-- Configuration for the nightly build and test job -->
     <property name="run.nightly.sleep" value="1"/> <!-- 1 minute -->
     <property name="run.nightly.email.tolist" value="jboss-development at lists.sourceforge.net"/>
@@ -430,6 +435,10 @@
 	 	 <property name="target" value="production" />
  	 	 <property name="jbm-clustered" value="true"/>
  	 </ant>
+ 	 <ant antfile="build-distr.xml" target="replace-messaging">
+	 	 <property name="target" value="cc" />
+ 	 	 <property name="jbm-clustered" value="true"/>
+ 	 </ant>
   	
   	
   	 <ant antfile="build-distr.xml" target="replace-messaging-examples"/>
@@ -678,6 +687,7 @@
     <antcall target="makeProductionConfigChanges"/>
     <antcall target="partition-default"/>
     <antcall target="partition-minimal"/>
+    <antcall target="partition-cc"/>
     <antcall target="replace-messaging"/>
     <antcall target="jboss-all-client"/>
     <!--<antcall target="setup-ejb3-dist"/>-->
@@ -782,6 +792,16 @@
       file="${project.root}/server/output/lib/jboss-minimal.jar"/>
   </target>
 
+  <target name="partition-cc"
+    description="A Common Criteria Certified configuration ">
+    <!-- Copy server/production to server/cc and then customize the settings
+    to values appropriate to production runs -->
+    <copy todir="${install.cc}">
+      <fileset dir="${install.production}">
+      </fileset>
+    </copy>
+  </target>
+
   <target name="bypass-jboss-all-client">
 
     <uptodate property="bypass-jboss-all-client.on" targetfile="${install.client}/jbossall-client.jar">




More information about the jboss-cvs-commits mailing list