[jboss-cvs] jboss-seam/examples/seampay ...

Norman Richards norman.richards at jboss.com
Fri Oct 20 12:51:26 EDT 2006


  User: nrichards
  Date: 06/10/20 12:51:26

  Added:       examples/seampay  build.xml
  Log:
  initial checkin
  
  Revision  Changes    Path
  1.1      date: 2006/10/20 16:51:26;  author: nrichards;  state: Exp;jboss-seam/examples/seampay/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <project name="CRUD" default="deploy" basedir=".">
  
      <!-- Example name -->
      <property name="Name"                   value="Seam Payment Example"/>
      <property name="example.name"           value="jboss-seam-pay"/>
  
      <!-- WAR -->
      <zipfileset id="example.war.docroot"
                 dir="view">
        <include name="**/*"/>
      </zipfileset>
      
      <zipfileset id="example.war.webinf"
              prefix="WEB-INF"
                 dir="resources/WEB-INF" >
          <patternset refid="meta.files"/>
      </zipfileset>
      
      <zipfileset id="example.war.webinf.lib"
              prefix="WEB-INF/lib"
                 dir="../../facelets/lib">
          <include name="*.jar"/>
      </zipfileset>
      
      <zipfileset id="example.war.webinf.lib.extra" 
      	    prefix="WEB-INF/lib"
      	     refid="extra.seam.jar"/>
      
      <!-- EJB3 -->
      <fileset id="example.ejb3.root"
              dir="resources">
          <include name="import.sql"/>
          <include name="seam.properties"/>
      	<include name="META-INF/ejb-jar.xml"/>
          <include name="META-INF/persistence.xml"/>
      </fileset>
  
      <!-- EAR -->
      <zipfileset id="example.ear.resources"
              prefix="META-INF"
                 dir="resources/META-INF">
          <include name="*"/>
          <exclude name="persistence.xml"/>
      	<exclude name="META-INF/ejb-jar.xml"/>
      </zipfileset>
  
      <fileset id="example.ejb3.lib" dir="../../lib">
          <include name="_NONE_"/>
      </fileset>
    
  	<!-- Test -->
  	<fileset id="example.resources" dir="resources">
  		<include name="**/*.*"/>
  	</fileset>
  	
      <!-- Tomcat build -->
      <zipfileset id="example.tomcat.war.webinf"
            prefix="WEB-INF"
               dir="resources/WEB-INF" >
         <include name="web.xml"/>
         <include name="pages.xml"/>
         <include name="components.xml"/>
         <include name="faces-config.xml"/>
      </zipfileset>
    
      <fileset id="example.tomcat.resources"
            dir="resources">
         <include name="seam.properties"/>
         <include name="META-INF/persistence.xml"/>
    	   <include name="META-INF/ejb-jar.xml"/>
      </fileset>
    
  
      <!-- Deploy -->
      <fileset id="example.deploy"
              dir="resources">
          <include name="_NONE_"/>
      </fileset>
  
      <!-- Undeploy -->
      <patternset id="example.undeploy">
          <include name="_NONE_"/>
      </patternset>
  
      <!-- Overrides -->
      <property name="src.java.dir" value="src"/>
  	<property name="src.test.dir" value="src"/>
  	<property name="test.classpath" value="test.eejb.classpath"/>
  	<property name="tomcat.conf" value="eejb.conf"/>
    
  
      <import file="../../build.xml"/>
  
  </project>
  
  
  
  



More information about the jboss-cvs-commits mailing list