[jboss-cvs] jboss-seam/seam-gen ...

Gavin King gavin.king at jboss.com
Wed Mar 7 00:22:48 EST 2007


  User: gavin   
  Date: 07/03/07 00:22:48

  Modified:    seam-gen  build.xml
  Log:
  support hotdeployment of components in war projects
  
  Revision  Changes    Path
  1.74      +5 -5      jboss-seam/seam-gen/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build.xml,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -b -r1.73 -r1.74
  --- build.xml	23 Feb 2007 16:08:29 -0000	1.73
  +++ build.xml	7 Mar 2007 05:22:48 -0000	1.74
  @@ -33,8 +33,8 @@
       <!-- Give user a chance to override without editing this file or typing -D -->
       <property file="${basedir}/build.properties" />
       
  -    <packageDirectory property="action.dir" package="${action.package}"/>
  -    <packageDirectory property="model.dir" package="${model.package}"/>
  +    <packageDirectory property="action.dir" package="action/${action.package}"/>
  +    <packageDirectory property="model.dir" package="model/${model.package}"/>
       <packageDirectory property="test.dir" package="${test.package}"/>
   	<pathFilename property="driver.file" path="${driver.jar}"/>
   	
  @@ -809,7 +809,7 @@
           	<property key="hibernatetool.util.toolclass" 
           		    value="org.jboss.seam.tool.Util"/>
           	
  -            <hbm2java jdk5="true" ejb3="true" destdir="${project.home}/src"/> 
  +            <hbm2java jdk5="true" ejb3="true" destdir="${project.home}/src/model"/> 
           	<hbmtemplate filepattern="{class-name}List.xhtml"
           	                template="view/list.xhtml.ftl" 
           		             destdir="${project.home}/view"
  @@ -832,7 +832,7 @@
                                foreach="entity"/>
           	<hbmtemplate filepattern="{package-name}/{class-name}List.java"
           	                template="src/EntityList.java.ftl" 
  -        		             destdir="${project.home}/src"
  +        		             destdir="${project.home}/src/action"
                                foreach="entity"/>
           	<hbmtemplate filepattern="{class-name}List.page.xml"
           	                template="view/list.page.xml.ftl" 
  @@ -840,7 +840,7 @@
                                foreach="entity"/>
           	<hbmtemplate filepattern="{package-name}/{class-name}Home.java"
           	                template="src/EntityHome.java.ftl" 
  -        		             destdir="${project.home}/src"
  +        		             destdir="${project.home}/src/action"
                                foreach="entity"/>
           	<hbmtemplate filepattern="menu.xhtml"
           	                template="view/layout/menu.xhtml.ftl" 
  
  
  



More information about the jboss-cvs-commits mailing list