You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-dev@portals.apache.org by bl...@apache.org on 2004/02/13 11:31:35 UTC

cvs commit: jakarta-pluto build.xml

blumm       2004/02/13 02:31:35

  Added:       .        build.xml
  Log:
  PR: 26489
  Submitted by:	Nick Lothian/nl@essential.com.au
  Reviewed by:	Michael Blum
  
  'build.xml' is required by the nightly build process as defined by 'jakarta-gump'.
  Look at '.../jakarta-gump/projects/jakarta-pluto.xml' for details.
  
  Revision  Changes    Path
  1.1                  jakarta-pluto/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="all" name="pluto-project" basedir=".">
  
  	<target name="all" depends="api, container, portal">
  	</target>
  
  	<target name="clean" depends="api-clean, container-clean, portal-clean">
  	</target>
  
  	<target name="api">
  		<property name="final.name" value="portlet-api-@@DATE@@"/>
  		<ant antfile="build.xml" dir="api" target="jar" inheritAll="false" />
  	</target>
  	<target name="api-clean">
  		<ant antfile="build.xml" dir="api" target="clean" inheritAll="false" />
  	</target>
  
  	<target name="container" depends="api">
  		<ant antfile="build.xml" dir="container" target="jar" inheritAll="false" />
  	</target>
  
  	<target name="container-clean">
  		<ant antfile="build.xml" dir="container" target="clean" inheritAll="false" />
  	</target>
  
  	<target name="portal" depends="container">
  		<ant antfile="build.xml" dir="portal" target="jar" inheritAll="false" />
  	</target>
  	<target name="portal-clean">
  		<ant antfile="build.xml" dir="portal" target="clean" inheritAll="false" />
  	</target>
  
  </project>