This is an automated email from the ASF dual-hosted git repository.

billblough pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-savan.git

commit 43438e5c999f9f5365c8868d0cead5e4125be6d3
Author: Sumedha Rubasinghe <sume...@apache.org>
AuthorDate: Sun Sep 23 02:30:50 2007 +0000

    changed build file to load axis2 jars from a given location, rather than 
manually copying them to savan/samples/build/lib folder
---
 modules/samples/eventing/build.xml | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/modules/samples/eventing/build.xml 
b/modules/samples/eventing/build.xml
index c20bf5b..fde43ed 100644
--- a/modules/samples/eventing/build.xml
+++ b/modules/samples/eventing/build.xml
@@ -1,15 +1,12 @@
 <project default="build.sample">
-
-    
-       <!--<classpath id="classpath1">
-               <pathelement location="lib/*.jar"/>
-       </classpath>-->
        
        <target name="build.sample">
+               <property name="axis2.home" 
value="/mnt/win_d/projects/axis/Axis2-1.3/axis2-1.3" />
                <property name="eventing.temp.dir" value="build/temp" />
            <property name="listner1.temp.dir" 
value="${eventing.temp.dir}/listner1" />
            <property name="listner2.temp.dir" 
value="${eventing.temp.dir}/listner2" />
            <property name="publisher.temp.dir" 
value="${eventing.temp.dir}/publisher" />
+               
                
            <mkdir dir="${listner1.temp.dir}" />
            <mkdir dir="${listner1.temp.dir}/META-INF" />
@@ -23,7 +20,10 @@
                
                <javac srcdir="src" destdir="build/classes">
                        <classpath>
-                           <fileset dir="build/lib">
+                           <fileset dir="../../core/target">
+                               <include name="*.jar"/>
+                           </fileset>                          
+                           <fileset dir="${axis2.home}/lib">
                                <include name="*.jar"/>
                            </fileset>
                        </classpath>
@@ -82,5 +82,9 @@
                        </fileset>
                </copy>
        </target>
+       
+       <target name="clean">
+               <delete dir="build"/>
+       </target>
 
 </project>
\ No newline at end of file

Reply via email to