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

Gavin King gavin.king at jboss.com
Fri Jun 15 16:59:37 EDT 2007


  User: gavin   
  Date: 07/06/15 16:59:37

  Modified:    seam-gen/build-scripts    .classpath build-war.xml build.xml
  Log:
  updates to seam-gen
  
  Revision  Changes    Path
  1.18      +4 -5      jboss-seam/seam-gen/build-scripts/.classpath
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: .classpath
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-scripts/.classpath,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -b -r1.17 -r1.18
  --- .classpath	15 May 2007 15:53:42 -0000	1.17
  +++ .classpath	15 Jun 2007 20:59:37 -0000	1.18
  @@ -4,13 +4,13 @@
       <classpathentry kind="src" output="classes/action" path="src/action"/>
       <classpathentry kind="src" output="classes/test" path="src/test"/>
       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
  -    <classpathentry kind="lib" path="embedded-ejb/conf"/>
  +    <classpathentry kind="lib" path="bootstrap"/>
  +    <classpathentry kind="lib" path="lib/jboss-embedded-all.jar"/>
       <classpathentry kind="lib" path="lib/hibernate-all.jar"/>
  -    <classpathentry kind="lib" path="lib/jboss-aop-jdk50.jar"/>
  -    <classpathentry kind="lib" path="lib/jboss-cache-jdk50.jar"/>
  -    <classpathentry kind="lib" path="lib/jboss-ejb3-all.jar"/>
  +    <classpathentry kind="lib" path="lib/thirdparty-all.jar"/>
       <classpathentry kind="lib" path="lib/jboss-seam.jar"/>
       <classpathentry kind="lib" path="lib/jboss-seam-debug.jar"/>
  +    <classpathentry kind="lib" path="lib/jboss-cache-jdk50.jar"/>
       <classpathentry kind="lib" path="lib/jbpm-3.1.4.jar"/>
       <classpathentry kind="lib" path="lib/antlr-2.7.6.jar"/>
       <classpathentry kind="lib" path="lib/jgroups.jar"/>
  @@ -19,7 +19,6 @@
       <classpathentry kind="lib" path="lib/jsf-api.jar"/>
       <classpathentry kind="lib" path="lib/servlet-api.jar"/>
       <classpathentry kind="lib" path="lib/testng-4.5.1-jdk15.jar"/>
  -    <classpathentry kind="lib" path="lib/thirdparty-all.jar"/>
       <classpathentry kind="lib" path="lib/jboss-el.jar"/>
       <classpathentry kind="lib" path="lib/jboss-el-api.jar"/>
   	<classpathentry kind="lib" path="lib/mvel14-1.2beta16.jar"/>
  
  
  
  1.16      +2 -2      jboss-seam/seam-gen/build-scripts/build-war.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build-war.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-scripts/build-war.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- build-war.xml	6 Jun 2007 19:56:41 -0000	1.15
  +++ build-war.xml	15 Jun 2007 20:59:37 -0000	1.16
  @@ -20,7 +20,7 @@
       <property name="action.dir" value="WEB-INF/classes" />
       <property name="classes.action.dir" value="${war.dir}/${action.dir}" />
       <property name="test.dir" value="test-build" />
  -    <property name="embedded-ejb3.dir" value="${basedir}/embedded-ejb/conf" />
  +    <property name="bootstrap.dir" value="${basedir}/bootstrap" />
       <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
       <property name="war.deploy.dir" value="${deploy.dir}/${project.name}.war" />
       <property name="testng.jar" value="${basedir}/lib/testng-4.5.1-jdk15.jar" />
  @@ -338,7 +338,7 @@
           <taskdef resource="testngtasks" classpath="${testng.jar}" />
           <testng outputdir="${basedir}/test-report">
               <classpath path="${test.dir}" />
  -            <classpath path="${embedded-ejb3.dir}" />
  +            <classpath path="${bootstrap.dir}" />
               <classpath refid="build.classpath" />
               <xmlfileset dir="${test.dir}" includes="*Test.xml" />
           </testng>
  
  
  
  1.33      +4 -4      jboss-seam/seam-gen/build-scripts/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-scripts/build.xml,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -b -r1.32 -r1.33
  --- build.xml	15 May 2007 15:53:42 -0000	1.32
  +++ build.xml	15 Jun 2007 20:59:37 -0000	1.33
  @@ -19,7 +19,7 @@
           <property name="jar.dir" value="exploded-archives/${project.name}.jar" />
           <property name="war.dir" value="exploded-archives/${project.name}.war" />
           <property name="test.dir" value="test-build" />
  -        <property name="embedded-ejb3.dir" value="${basedir}/embedded-ejb/conf" />
  +        <property name="bootstrap.dir" value="${basedir}/bootstrap" />
           <property name="deploy.dir" value="${jboss.home}/server/default/deploy" />
           <property name="ear.deploy.dir" value="${deploy.dir}/${project.name}.ear" />
           <property name="jar.deploy.dir" value="${ear.deploy.dir}/${project.name}.jar" />
  @@ -294,7 +294,7 @@
                   <taskdef resource="testngtasks" classpath="${testng.jar}" />
                   <testng outputdir="${basedir}/test-report">
                           <classpath path="${test.dir}" />
  -                        <classpath path="${embedded-ejb3.dir}" />
  +                        <classpath path="${bootstrap.dir}" />
                           <classpath refid="build.classpath" />
                           <xmlfileset dir="${test.dir}" includes="*Test.xml" />
                   </testng>
  
  
  



More information about the jboss-cvs-commits mailing list