[jboss-cvs] jboss-seam/examples/remoting/poker ...

Shane Bryzak Shane_Bryzak at symantec.com
Wed Oct 11 00:43:22 EDT 2006


  User: sbryzak2
  Date: 06/10/11 00:43:22

  Added:       examples/remoting/poker  build.xml
  Log:
  New remoting example, under construction.
  
  Revision  Changes    Path
  1.1      date: 2006/10/11 04:43:22;  author: sbryzak2;  state: Exp;jboss-seam/examples/remoting/poker/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <project name="Poker" default="deploy" basedir=".">
  
      <!-- Example name -->
      <property name="Name"                   value="Seam Remoting Poker Example"/>
      <property name="example.name"           value="seam-poker"/>
  
      <!-- 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"
                 dir=".">
          <include name="_NONE_"/>
      </zipfileset>
  
      <!-- EJB3 -->
      <fileset id="example.ejb3.root"
              dir="resources">
          <include name="seam.properties"/>
          <include name="META-INF/ejb-jar.xml"/>
      </fileset>
  
      <!-- EAR -->
      <zipfileset id="example.ear.resources"
              dir="resources">
        <include name="META-INF/*"/>
        <exclude name="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>
  
      <!-- 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"/>
  
      <import file="../../../build.xml"/>
  
  </project>
  
  
  
  



More information about the jboss-cvs-commits mailing list