You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by cz...@apache.org on 2005/08/09 08:37:46 UTC

cvs commit: ws-wsrp4j/build build.xml

cziegeler    2005/08/08 23:37:46

  Modified:    build    build.xml
  Log:
  Apply patches for WSRP4J-67 and other build problems submitted by Michel Alessandrini <ws...@gmx-topmail.de>
  
  Revision  Changes    Path
  1.17      +12 -2     ws-wsrp4j/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/build/build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build.xml	21 Jun 2005 17:36:29 -0000	1.16
  +++ build.xml	9 Aug 2005 06:37:46 -0000	1.17
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   <!--
  -  Copyright 1999-2004 The Apache Software Foundation
  +  Copyright 1999-2005 The Apache Software Foundation
   
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
  @@ -85,7 +85,7 @@
           <fileset dir="${build.lib}">
               <include name="**/*.jar"/>
           </fileset>
  -        <fileset dir="${pluto.war}/WEB-INF//lib">
  +        <fileset dir="${pluto.war}/WEB-INF/lib">
               <include name="**/*.jar"/>
           </fileset>
       </path>
  @@ -533,6 +533,8 @@
       <target name="DeployPortlet"
               depends="load-properties">
   
  +    	<antcall target="deploy_provider_pluto" />
  +
           <property file="build.properties"/>
   
           <antcall target="DeployPortlet.intern"/>
  @@ -703,4 +705,12 @@
   	    </condition>
   	</target> 
   
  +	<target name="deploy_provider_pluto">
  +		<echo>Deploying Pluto ...</echo>
  +		<mkdir dir="${TOMCAT_HOME}/webapps/pluto"/>
  +	    <copy toDir="${TOMCAT_HOME}/webapps/pluto">
  +	        <fileset dir="${pluto.war}" />
  +	    </copy>
  +	    <echo>Finished!</echo>
  +    </target>
   </project>