[jboss-cvs] jboss-seam/examples/spring    ...
    Michael Youngstrom 
    youngm at gmail.com
       
    Wed Aug  8 14:44:39 EDT 2007
    
    
  
  User: myoungstrom
  Date: 07/08/08 14:44:39
  Modified:    examples/spring    build.xml
  Added:       examples/spring    build-jbosswar.xml
  Removed:     examples/spring    build-tomcat6.xml
  Log:
  Replaced tomcat 6 build support with jbosswar build.
  
  Revision  Changes    Path
  1.15      +5 -5      jboss-seam/examples/spring/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/spring/build.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- build.xml	17 Jul 2007 18:43:55 -0000	1.14
  +++ build.xml	8 Aug 2007 18:44:39 -0000	1.15
  @@ -1,16 +1,16 @@
   <?xml version="1.0"?>
   
  -<project name="Spring Example" default="tomcat6" basedir=".">
  +<project name="Spring Example" default="all" basedir=".">
   
  -   <target name="tomcat6" description="Build the Spring example artifacts, suitable for deployment to Tomcat 6">
  -     	<ant antfile="build-tomcat6.xml"/>
  +   <target name="jbosswar" description="Build the Spring example artifacts, suitable for deployment to JBoss as a WAR">
  +     	<ant antfile="build-jbosswar.xml"/>
      </target>
   
      <target name="clean" description="Clean up the example">
  -     	<ant antfile="build-tomcat6.xml" target="clean" />
  +     	<ant antfile="build-jbosswar.xml" target="clean" />
      </target>
   
  -   <target name="all" depends="tomcat6" description="Build Spring Booking example, for deployment to all supported application servers"/>
  +   <target name="all" depends="jbosswar" description="Build Spring Booking example, for deployment to all supported application servers"/>
   
   </project>
   
  
  
  
  1.1      date: 2007/08/08 18:44:39;  author: myoungstrom;  state: Exp;jboss-seam/examples/spring/build-jbosswar.xml
  
  Index: build-jbosswar.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <project name="Spring JBossWar" default="noejb.archive" basedir=".">
  
      <!-- Naming -->
      <property name="Name"                   value="The Spring Example for JBoss War"/>
      <property name="example.name"           value="jboss-seam-spring"/>
  
      <!-- resources -->
      <property name="resources.dir" value="resources" />
  	<property name="dist.dir" value="dist-jbosswar" />
  	<property name="exploded-archives.dir" value="exploded-archives-jbosswar" />
         
      <!-- Libraries to include -->
      <property name="seam.ui.lib"    value="true"/>
      <property name="seam.debug.lib" value="true"/>
      <property name="facelets.lib"   value="true"/>
      <property name="seam.ioc.war.lib"   value="true"/>
  	<property name="spring.lib"   value="true"/>
  	<!-- needed because jboss must include hibernate search -->
  	<property name="search.lib"   value="true"/>
  
      <import file="../build.xml"/>
  </project>
  
  
  
  
    
    
More information about the jboss-cvs-commits
mailing list