User: user57  
  Date: 02/02/24 02:24:29

  Modified:    catalina build.xml
  Log:
   o moved core system from server to system (includes
     all of org.jboss.system, some of org.jboss.deployment +
     Main, Shutdown & Version)
   o finished the integration of ServerLoader, Server and
     ServerConfig are now interfaces so had to update refering
     classes to use ServerConfigImplMBean
   o ServerLoader changes effectivly remove the need for lib/ + lib/ext
     seperation, updated build to use lib for lib/ext and updated
     config files
  
  Revision  Changes    Path
  1.10      +11 -3     contrib/catalina/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/catalina/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml 20 Feb 2002 06:43:59 -0000      1.9
  +++ build.xml 24 Feb 2002 10:24:28 -0000      1.10
  @@ -12,7 +12,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.9 2002/02/20 06:43:59 starksm Exp $ -->
  +<!-- $Id: build.xml,v 1.10 2002/02/24 10:24:28 user57 Exp $ -->
   
   <project default="main" name="JBoss/Tomcat-4">
   
  @@ -127,6 +127,13 @@
         <pathelement path="${jboss.common.lib}/jboss-common.jar"/>
       </path>
   
  +    <!-- System -->
  +    <property name="jboss.system.root" value="${project.root}/system/output"/>
  +    <property name="jboss.system.lib" value="${jboss.system.root}/lib"/>
  +    <path id="jboss.system.classpath">
  +      <pathelement path="${jboss.system.lib}/jboss-system.jar"/>
  +    </path>
  +
       <!-- Server -->
       <property name="jboss.server.root" value="${project.root}/server/output"/>
       <property name="jboss.server.lib" value="${jboss.server.root}/lib"/>
  @@ -134,8 +141,8 @@
         <pathelement path="${jboss.server.lib}/jboss.jar"/>
         <pathelement path="${project.root}/security/output/lib/jbosssx.jar"/>
       </path>
  -    <!-- This corresponds to the tomcat4 dist existing in this module root
  -    -->
  +
  +    <!-- This corresponds to the tomcat4 dist existing in this module root -->
       <property name="tomcat.server.root" 
value="${module.root}/jakarta-tomcat-4.0.2"/>
       <path id="tomcat.server.classpath">
         <pathelement path="${tomcat.server.root}/bin/bootstrap.jar"/>
  @@ -148,6 +155,7 @@
       <!-- The combined dependent module classpath -->
       <path id="dependentmodule.classpath">
         <path refid="jboss.j2ee.classpath"/>
  +      <path refid="jboss.system.classpath"/>
         <path refid="jboss.server.classpath"/>
         <path refid="jboss.common.classpath"/>
         <path refid="tomcat.server.classpath"/>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to