You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2002/02/04 18:30:56 UTC

cvs commit: jakarta-avalon-cornerstone/apps/enterprise/orb .cvsignore local.properties.example build.xml

mcconnell    02/02/04 09:30:56

  Modified:    apps/enterprise/orb build.xml
  Added:       apps/enterprise/orb .cvsignore local.properties.example
  Log:
  runtime correction to interceptor management
  
  Revision  Changes    Path
  1.4       +18 -1     jakarta-avalon-cornerstone/apps/enterprise/orb/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-cornerstone/apps/enterprise/orb/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	4 Feb 2002 14:17:48 -0000	1.3
  +++ build.xml	4 Feb 2002 17:30:56 -0000	1.4
  @@ -24,6 +24,9 @@
         javadoc          - javadoc API generation
         dist             - executes build, javadoc and support file creation
         clean            - destroy the build directory
  +      install          - copies distribution jar files to the 
  +                         '${install.path}' directory
  +
         
       </echo>
     </target>
  @@ -111,7 +114,21 @@
   
     <target name="dist" depends="build,javadoc,support"/>
   
  -  <target name="all" depends="clean,dist"/>
  +  <target name="all" depends="clean,dist,install"/>
  +
  +  <target name="install.context">
  +    <available file="${install.path}" type="dir" property="install.path.present"/>
  +    <echo message="install.path.present"/>
  +  </target>
  +  
  +  <target name="install" depends="install.context,build" if="install.path.present">
  +    <copy todir="${install.path}">
  +      <fileset dir="${dist}">
  +        <include name="${orb.manager.jar}"/>
  +      </fileset>
  +    </copy>
  +  </target>
  +
   
     <!-- UTILITY TARGETS -->
   
  
  
  
  1.1                  jakarta-avalon-cornerstone/apps/enterprise/orb/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  build
  local.properties
  dist
  
  
  
  1.1                  jakarta-avalon-cornerstone/apps/enterprise/orb/local.properties.example
  
  Index: local.properties.example
  ===================================================================
  
  #
  # This file should be renamed to "local.properties".
  # The local.properties file is provided as a means to customise 
  # local setting in the build process.
  #
  
  #
  # The install property (if defined) is used to copy the final distribution
  # jar files for the PSS runtime and compiler to a directory defined by the
  # install.path property.  The "install" and "all" task will copy the main
  # jar files from from this project if the install.path property is defined.
  #
  install.path=<path-to-the-your-preferred-common-library-directory>
  
  #
  # When building javadoc the jdk.href and avalon.href properties
  # will be used to link to resopective javadoc sources.  These values should 
  # updated to reference the location of the respective javadoc packages in 
  # your local environment.  Path declarations should be relative to the 
  # javadoc.root.path property. Modifying the javadoc.root.path property
  # will result in the generation of the javadoc sources at an alternatice 
  # location to ${dist}/javadoc.  
  #
  javadoc.root.path=<path-to-the-prefered-pss-javadoc-directory>
  jdk.href=<path-to-your-local-jdk-javadoc-directory>
  avalon.href=<path-to-your-local-avalon-javadoc-directory>
  
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>