[jboss-cvs] system2 ...

Scott Stark scott.stark at jboss.com
Thu Jul 13 22:31:36 EDT 2006


  User: starksm 
  Date: 06/07/13 22:31:36

  Modified:    system2  build.xml
  Log:
  Correct the thirdparty library include and set the source level to 1.5
  
  Revision  Changes    Path
  1.8       +7 -7      system2/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/system2/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- build.xml	31 May 2005 20:09:44 -0000	1.7
  +++ build.xml	14 Jul 2006 02:31:36 -0000	1.8
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE project [
      <!ENTITY buildmagic SYSTEM "../tools/etc/buildmagic/buildmagic.ent">
  -   <!ENTITY libraries  SYSTEM "../tools/etc/buildmagic/libraries.ent">
  +   <!ENTITY libraries  SYSTEM "../thirdparty/libraries.ent">
      <!ENTITY modules SYSTEM "../tools/etc/buildmagic/modules.ent">
      <!ENTITY targets SYSTEM "../tools/etc/buildmagic/targets.ent">
   ]>
  @@ -15,7 +15,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.7 2005/05/31 20:09:44 adrian Exp $ -->
  +<!-- $Id: build.xml,v 1.8 2006/07/14 02:31:36 starksm Exp $ -->
   
   <project default="main" name="JBoss/System">
   
  @@ -69,11 +69,9 @@
       <path id="library.classpath">
         <path refid="junit.junit.classpath"/>
         <path refid="gnu.getopt.classpath"/>
  -      <path refid="apache.xerces.classpath"/>
  -      <path refid="apache.log4j.classpath"/>
  -      <path refid="apache.commons.classpath"/>
         <path refid="oswego.concurrent.classpath"/>
  -      <path refid="dom4j.dom4j.classpath"/>
  +      <path refid="jboss.common.classpath"/>
  +      <path refid="jboss.jbossxb.classpath"/>
       </path>
   
       <!-- ======= -->
  @@ -84,7 +82,7 @@
   
       <!-- The combined dependant module classpath -->
       <path id="dependentmodule.classpath">
  -      <path refid="jboss.common.classpath"/>
  +      <path refid="jboss.container.classpath"/>
         <path refid="jboss.dependency.classpath"/>
         <path refid="jboss.kernel.classpath"/>
         <path refid="jboss.j2se.classpath"/>
  @@ -106,6 +104,8 @@
                        org/jboss/system/server/ServerConfig.class,
                        **/*MBean.class"
       />
  +    <property name="javac.target" value="1.5"/>
  +    <property name="javac.source" value="1.5"/>
   
       <call target="_default:task-init"/>
   
  
  
  



More information about the jboss-cvs-commits mailing list