[jboss-cvs] jboss-seam-tools/src/templates/ear ...

Thomas Heute theute at jboss.com
Mon Aug 14 11:57:44 EDT 2006


  User: theute  
  Date: 06/08/14 11:57:44

  Modified:    src/templates/ear     eclipse.project.ftl
                        application.xml.ftl
  Added:       src/templates/ear     org.eclipse.wst.common.component.ftl
  Removed:     src/templates/ear     eclipse.component.ftl
  Log:
  Moved to hibernate Tools
  
  (ban cvs imports)
  
  Revision  Changes    Path
  1.2       +3 -3      jboss-seam-tools/src/templates/ear/eclipse.project.ftl
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: eclipse.project.ftl
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam-tools/src/templates/ear/eclipse.project.ftl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- eclipse.project.ftl	10 Aug 2006 12:55:19 -0000	1.1
  +++ eclipse.project.ftl	14 Aug 2006 15:57:44 -0000	1.2
  @@ -1,12 +1,12 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <projectDescription>
  -	<name>${projectName}</name>
  +	<name>${earContext.projectName}</name>
   	<comment></comment>
   	<projects>
  -		<#list ejbProjects as ejbProject>
  +		<#list ejbContexts as ejbProject>
   		<project>${ejbProject.projectName}</project>
   		</#list>
  -		<#list webProjects as webProject>
  +		<#list webContexts as webProject>
   		<project>${webProject.projectName}</project>
   		</#list>
   	</projects>
  
  
  
  1.2       +5 -5      jboss-seam-tools/src/templates/ear/application.xml.ftl
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: application.xml.ftl
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam-tools/src/templates/ear/application.xml.ftl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- application.xml.ftl	10 Aug 2006 12:55:19 -0000	1.1
  +++ application.xml.ftl	14 Aug 2006 15:57:44 -0000	1.2
  @@ -7,17 +7,17 @@
   	</module>
   	</#list>
   
  -	<#list webProjects as webModule>
  -	<module<#if context.eclipseSupport> id="${webModule.webContext.id}"</#if>>
  +	<#list webContexts as webModule>
  +	<module<#if context.eclipseSupport> id="${webModule.id}"</#if>>
   		<web>
   			<web-uri>${webModule.filename}</web-uri>
  -			<context-root>${webModule.webContext.contextRoot}</context-root>
  +			<context-root>/${webModule.contextRoot}</context-root>
   		</web>
   	</module>
   	</#list>
   
  -	<#list ejbProjects as ejbModule>
  -	<module<#if context.eclipseSupport> id="${ejbModule.ejbContext.id}"</#if>>
  +	<#list ejbContexts as ejbModule>
  +	<module<#if context.eclipseSupport> id="${ejbModule.id}"</#if>>
   		<ejb>${ejbModule.filename}</ejb>
   	</module>
   	</#list>
  
  
  
  1.1      date: 2006/08/14 15:57:44;  author: theute;  state: Exp;jboss-seam-tools/src/templates/ear/org.eclipse.wst.common.component.ftl
  
  Index: org.eclipse.wst.common.component.ftl
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <project-modules id="moduleCoreId">
  <wb-module deploy-name="${earContext.projectName}">
  <wb-resource deploy-path="/" source-path="/${earContext.contentDirectory}"/>
  
  <#list ejbContexts as ejbProject>
  <dependent-module deploy-path="/" handle="module:/resource/${ejbProject.projectName}/${ejbProject.projectName}">
  <dependent-object>${ejbProject.id}</dependent-object>
  <dependency-type>uses</dependency-type>
  </dependent-module>
  </#list>
  
  <#list webContexts as webProject>
  <dependent-module deploy-path="/" handle="module:/resource/${webProject.projectName}/${webProject.projectName}">
  <dependent-object>${webProject.id}</dependent-object>
  <dependency-type>uses</dependency-type>
  </dependent-module>
  </#list>
  </wb-module>
  </project-modules>
  
  
  



More information about the jboss-cvs-commits mailing list