You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by he...@apache.org on 2004/07/19 17:46:20 UTC

cvs commit: ws-axis/contrib/ews project.xml maven.xml

hemapani    2004/07/19 08:46:20

  Modified:    contrib/ews project.xml maven.xml
  Log:
  change the EWS to fit in to the geronimo integeration
  internal based geronimo accsess is supported
  nicer way of using EWS programatically is added
  
  Revision  Changes    Path
  1.10      +8 -0      ws-axis/contrib/ews/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/contrib/ews/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml	7 Jul 2004 09:00:04 -0000	1.9
  +++ project.xml	19 Jul 2004 15:46:20 -0000	1.10
  @@ -289,6 +289,14 @@
                   <module>true</module>
               </properties>
           </dependency>
  +        <dependency>
  +            <groupId>openejb</groupId>
  +            <artifactId>openejb-core-2.0</artifactId>
  +            <version>SNAPSHOT</version>
  +            <properties>
  +                <module>true</module>
  +            </properties>
  +        </dependency>
       </dependencies>
   </project>
   
  
  
  
  1.11      +18 -9     ws-axis/contrib/ews/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/contrib/ews/maven.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- maven.xml	9 Jul 2004 05:07:36 -0000	1.10
  +++ maven.xml	19 Jul 2004 15:46:20 -0000	1.11
  @@ -24,10 +24,12 @@
                          refid="ews.beans.compile.src.set"/>
   
       </preGoal>
  -
  +    
       <postGoal name="jar">
           <ant:mkdir dir="${basedir}/target/lib"/>
  -        <deploy:copy-deps todir="${basedir}/target/lib"/>    
  +        <deploy:copy-deps todir="${basedir}/target/lib"/>   
  +        <ant:mkdir dir="${maven.repo.local}/ews/jars"/>
  +		<ant:copy file="${basedir}/target/ews-1.0.jar" todir="${maven.repo.local}/ews/jars"/>
       </postGoal>
       
       <goal name="generate:jaxb"
  @@ -76,12 +78,19 @@
       
       <preGoal name="test:test">
           <j:jelly xmlns="jelly:ant">
  -		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/bookquote"/>
  -		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/google"/>
  -		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/time"/>
  -		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/zip"/>
  -		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/servlet/war2"/>
  -		<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/echo"/>
  +			<ant:java classname="org.apache.geronimo.ews.ws4j2ee.utils.PropertyStore" fork="no" >
  +			   	<ant:arg value="${maven.repo.local}"/>
  +	  	     	<ant:classpath>
  +			     	<pathelement location="${basedir}/target/classes"/>
  +	  	     	</ant:classpath>
  +             </ant:java>
  +
  +			<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/bookquote"/>
  +			<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/google"/>
  +			<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/time"/>
  +			<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/zip"/>
  +			<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/servlet/war2"/>
  +			<ant:ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="samples/ejb/echo"/>
           </j:jelly>
       </preGoal>