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

Peter Muir peter at bleepbleep.org.uk
Wed Aug 8 11:17:36 EDT 2007


  User: pmuir   
  Date: 07/08/08 11:17:36

  Modified:    examples/hibernate2       build-tomcat6.xml
                        build-tomcat55.xml build-websphere61.xml
                        build-weblogic92.xml build-glassfish.xml
                        build-jboss405.xml
  Log:
  JBSEAM-1724
  
  Revision  Changes    Path
  1.3       +5 -1      jboss-seam/examples/hibernate2/build-tomcat6.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-tomcat6.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/hibernate2/build-tomcat6.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- build-tomcat6.xml	20 Jul 2007 18:48:58 -0000	1.2
  +++ build-tomcat6.xml	8 Aug 2007 15:17:36 -0000	1.3
  @@ -19,7 +19,7 @@
   
       <import file="../build.xml"/>
   
  -    <fileset id="noejb.war.extras" dir="${seam.dir}">
  +    <fileset id="noejb.war.lib.extras" dir="${seam.dir}">
           <include name="lib/common*.jar"/>
           <include name="lib/jsf-*.jar"/>
           <include name="lib/jstl-*.jar"/>
  @@ -33,5 +33,9 @@
           -->
       </fileset>
          
  +	<fileset id="noejb.war.extras" dir="${resources.dir}">
  +		<include name="META-INF/context.xml" />
  +	</fileset>
  +       
   </project>
   
  
  
  
  1.3       +5 -1      jboss-seam/examples/hibernate2/build-tomcat55.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-tomcat55.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/hibernate2/build-tomcat55.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- build-tomcat55.xml	20 Jul 2007 18:48:58 -0000	1.2
  +++ build-tomcat55.xml	8 Aug 2007 15:17:36 -0000	1.3
  @@ -19,7 +19,7 @@
   
       <import file="../build.xml"/>
   
  -    <fileset id="noejb.war.extras" dir="${seam.dir}">
  +    <fileset id="noejb.war.lib.extras" dir="${seam.dir}">
           <include name="lib/common*.jar"/>
           <include name="lib/jsf-*.jar"/>
           <include name="lib/jstl-*.jar"/>
  @@ -35,5 +35,9 @@
           -->
       </fileset>
          
  +	<fileset id="noejb.war.extras" dir="${resources.dir}">
  +		<include name="META-INF/context.xml" />
  +	</fileset>
  +       
   </project>
   
  
  
  
  1.2       +29 -24    jboss-seam/examples/hibernate2/build-websphere61.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-websphere61.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/hibernate2/build-websphere61.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- build-websphere61.xml	9 Jul 2007 04:32:42 -0000	1.1
  +++ build-websphere61.xml	8 Aug 2007 15:17:36 -0000	1.2
  @@ -3,8 +3,8 @@
   <project name="Hibernate Booking" default="noejb.archive" basedir=".">
   
       <!-- Naming -->
  -    <property name="Name"                   value="The Hibernate Example for WebSphere 6.1.0.9"/>
  -    <property name="example.name"           value="jboss-seam-hibernate"/>
  +	<property name="Name" value="The Hibernate Example for WebSphere 6.1.0.9" />
  +	<property name="example.name" value="jboss-seam-hibernate" />
   
       <!-- resources -->
       <property name="resources.dir" value="resources-websphere61" />
  @@ -12,21 +12,26 @@
   	<property name="exploded-archives.dir" value="exploded-archives-websphere61" />
          
       <!-- 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="ajax4jsf.lib"   value="true"/>
  -
  -    <import file="../build.xml"/>
  -
  -    <fileset id="noejb.war.extras" dir="${seam.dir}">
  -        <include name="lib/common*.jar"/>
  -        <include name="lib/jsf-*.jar"/>
  -        <include name="lib/jstl-*.jar"/>
  -        <include name="hibernate/lib/*.jar"/>
  -        <include name="lib/thirdparty-all.jar"/>
  +	<property name="seam.ui.lib" value="true" />
  +	<property name="seam.debug.lib" value="true" />
  +	<property name="facelets.lib" value="true" />
  +	<property name="ajax4jsf.lib" value="true" />
  +
  +	<import file="../build.xml" />
  +
  +	<fileset id="noejb.war.lib.extras" dir="${seam.dir}">
  +		<include name="lib/common*.jar" />
  +		<include name="lib/jsf-*.jar" />
  +		<include name="lib/jstl-*.jar" />
  +		<include name="hibernate/lib/*.jar" />
  +		<include name="lib/thirdparty-all.jar" />
           <!-- Needed since WAS 6.1 does not support JSP 2.0 -->
  -        <include name="examples/hibernate2/lib/el-*.jar"/>
  +		<include name="examples/hibernate2/lib/el-*.jar" />
  +	</fileset>
  +
  +	<fileset id="noejb.war.extras" dir="${resources.dir}">
  +		<include name="WEB-INF/classes/**/*" />
  +		<include name="META-INF/*.taglib.xml" />
       </fileset>
          
   </project>
  
  
  
  1.2       +5 -1      jboss-seam/examples/hibernate2/build-weblogic92.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-weblogic92.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/hibernate2/build-weblogic92.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- build-weblogic92.xml	9 Jul 2007 04:32:42 -0000	1.1
  +++ build-weblogic92.xml	8 Aug 2007 15:17:36 -0000	1.2
  @@ -19,7 +19,7 @@
   
       <import file="../build.xml"/>
   
  -    <fileset id="noejb.war.extras" dir="${seam.dir}">
  +    <fileset id="noejb.war.lib.extras" dir="${seam.dir}">
           <include name="lib/common*.jar"/>
           <include name="lib/jsf-*.jar"/>
           <include name="lib/jstl-*.jar"/>
  @@ -29,5 +29,9 @@
           <include name="examples/hibernate2/lib/el-*.jar"/>
       </fileset>
          
  +	<fileset id="noejb.war.extras" dir="${resources.dir}">
  +		<include name="WEB-INF/classes/**/*" />
  +	</fileset>
  +       
   </project>
   
  
  
  
  1.2       +5 -1      jboss-seam/examples/hibernate2/build-glassfish.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-glassfish.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/hibernate2/build-glassfish.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- build-glassfish.xml	9 Jul 2007 04:32:42 -0000	1.1
  +++ build-glassfish.xml	8 Aug 2007 15:17:36 -0000	1.2
  @@ -19,11 +19,15 @@
   
       <import file="../build.xml"/>
   
  -    <fileset id="noejb.war.extras" dir="${seam.dir}">
  +    <fileset id="noejb.war.lib.extras" dir="${seam.dir}">
           <include name="lib/common*.jar"/>
           <include name="lib/thirdparty-all.jar"/>
           <include name="hibernate/lib/*.jar"/>
       </fileset>
          
  +	<fileset id="noejb.war.extras" dir="${resources.dir}">
  +		<include name="WEB-INF/classes/**/*" />
  +	</fileset>
  +       
   </project>
   
  
  
  
  1.2       +1 -1      jboss-seam/examples/hibernate2/build-jboss405.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-jboss405.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/hibernate2/build-jboss405.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- build-jboss405.xml	9 Jul 2007 04:32:42 -0000	1.1
  +++ build-jboss405.xml	8 Aug 2007 15:17:36 -0000	1.2
  @@ -19,7 +19,7 @@
   
       <import file="../build.xml"/>
   
  -    <fileset id="noejb.war.extras" dir="${seam.dir}">
  +    <fileset id="noejb.war.lib.extras" dir="${seam.dir}">
           <include name="lib/common*.jar"/>
           <include name="lib/jsf-*.jar"/>
           <include name="lib/jstl-*.jar"/>
  
  
  



More information about the jboss-cvs-commits mailing list