Author: chris.laprun(a)jboss.com
Date: 2007-02-14 00:29:16 -0500 (Wed, 14 Feb 2007)
New Revision: 6263
Modified:
trunk/build/build.xml
Log:
Fixed build (commented out core-admin stuff that has been removed for now).
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2007-02-14 03:53:20 UTC (rev 6262)
+++ trunk/build/build.xml 2007-02-14 05:29:16 UTC (rev 6263)
@@ -70,7 +70,7 @@
<!-- Module name(s) & version -->
<property name="module.version"
-
value="${version.major}.${version.minor}.${version.revision}${version.tag}"/>
+
value="${version.major}.${version.minor}.${version.revision}${version.tag}"/>
<!-- ========= -->
<!-- Libraries -->
@@ -134,13 +134,13 @@
<module name="wsrp"/>
<module name="registration"/>
<module name="workflow"/>
- <module name="core-admin"/>
+ <!--<module name="core-admin"/>-->
<!-- Module groups -->
<group name="portal">
<include
- modules="common, test, api, faces, jems, server, security, identity,
search, format, portlet, portlet-federation, theme, workflow, cms, bridge, samples,
registration, wsrp, core, core-cms, core-management, core-samples, core-admin"/>
+ modules="common, test, api, faces, jems, server, security, identity,
search, format, portlet, portlet-federation, theme, workflow, cms, bridge, samples,
registration, wsrp, core, core-cms, core-management, core-samples"/>
</group>
<group name="cms">
@@ -203,8 +203,8 @@
<!--+====================================================================+-->
<target name="output"
- description="Generate all target output."
- depends="init">
+ description="Generate all target output."
+ depends="init">
<!-- Add module specific elements here. -->
</target>
@@ -224,12 +224,12 @@
<!--+====================================================================+-->
<target name="release"
- description="Builds the default release structure."
- depends="modules-most, output"/>
+ description="Builds the default release structure."
+ depends="modules-most, output"/>
<target name="release-full"
- description="Builds the full release structure."
- depends="modules-all, release"/>
+ description="Builds the full release structure."
+ depends="modules-all, release"/>
<!--+====================================================================+-->
<!--| Misc. |-->
@@ -238,26 +238,26 @@
<!--+====================================================================+-->
<target name="clean" depends="createthirdparty, modules-clean,
_buildmagic:clean"
- description="Cleans up most generated files.">
+ description="Cleans up most generated files.">
<!-- Add module specific elements here. -->
</target>
<target name="clobber" depends="_buildmagic:clobber, clean,
modules-clobber"
- description="Cleans up all generated files.">
+ description="Cleans up all generated files.">
<!-- Add module specific elements here. -->
</target>
<target name="main" depends="most"
- description="Executes the default target (most)."/>
+ description="Executes the default target (most)."/>
<target name="all" depends="createthirdparty, modules-all"
- description="Executes all modules and builds everything."/>
+ description="Executes all modules and builds everything."/>
<target name="most" depends="createthirdparty, modules-most"
- description="Executes all modules and builds most everything."/>
+ description="Executes all modules and builds most everything."/>
<target name="help" depends="_buildmagic:help:build"
- description="Show this help message."/>
+ description="Show this help message."/>
<!--
@@ -273,23 +273,23 @@
<!--</target>-->
<target name="deploy"
- description="Deploy."
- depends="main">
+ description="Deploy."
+ depends="main">
<require file="${jboss.home}/server/${portal.deploy.dir}"/>
<copy file="../core/output/lib/jboss-portal.sar"
todir="${jboss.home}/server/${portal.deploy.dir}"
- overwrite="true"/>
+ overwrite="true"/>
</target>
<target name="undeploy"
- description="Undeploy."
- depends="init">
+ description="Undeploy."
+ depends="init">
<require file="${jboss.home}/server/${portal.deploy.dir}"/>
<delete
file="${jboss.home}/server/${portal.deploy.dir}/jboss-portal.sar"/>
</target>
<target name="exploded-deploy"
- description="Deploy exploded sar."
- depends="main">
+ description="Deploy exploded sar."
+ depends="main">
<require file="${jboss.home}/server/${portal.deploy.dir}"/>
<delete
dir="${jboss.home}/server/${portal.deploy.dir}/jboss-portal-exploded.sar"/>
<mkdir
dir="${jboss.home}/server/${portal.deploy.dir}/jboss-portal-exploded.sar"/>
@@ -362,7 +362,7 @@
<!-- then generate a new libraries.ent file and include it in -->
<!-- the build -->
<target name="createthirdparty" unless="inhibit.downloads"
- depends="check.inhibit.downloads">
+ depends="check.inhibit.downloads">
<ant antfile="build-thirdparty.xml"
target="generate-lib-file"/>
</target>
@@ -371,8 +371,8 @@
<condition property="inhibit.downloads">
<or>
<uptodate property="dependencies.current"
- srcfile="build-thirdparty.xml"
- targetfile="../thirdparty/libraries.ent"/>
+ srcfile="build-thirdparty.xml"
+ targetfile="../thirdparty/libraries.ent"/>
<istrue value="${nodownload}"/>
</or>
</condition>