jon         02/01/03 15:14:43

  Modified:    .        build.xml
  Log:
  added install-jar target
  
  comment: i really hate fucking commons build.xml file templates...
  they are ten steps backwards and suck balls.
  
  Revision  Changes    Path
  1.2       +13 -3     jakarta-velocity-dvsl/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-dvsl/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 18 Dec 2001 15:43:11 -0000      1.1
  +++ build.xml 3 Jan 2002 23:14:43 -0000       1.2
  @@ -5,7 +5,7 @@
   
     <property file="build/build.properties"/>          <!-- Component local   -->
     <property file="../build.properties"/>             <!-- Commons local     -->
  -  <property file="${user.home}/.build.properties"/>  <!-- User local        -->
  +  <property file="${user.home}/build.properties"/>  <!-- User local        -->
    
   <!-- ========== External Dependencies ===================================== -->
   
  @@ -141,8 +141,19 @@
               manifest="${conf.home}/MANIFEST.MF"/>
     </target>
   
  +  <!-- ================================================================== -->
  +  <!-- I N S T A L L  J A R                                               -->
  +  <!-- ================================================================== -->
  +  <target name="install-jar" depends="jar"
  +          description="--> Installs .jar file in ${lib.repo}">
  +    <copy todir="${lib.repo}" filtering="no">
  +      <fileset dir="${basedir}">
  +        <include name="${project.name}-${project.version}.jar"/>
  +      </fileset>
  +    </copy>
  +  </target>
  +
     <target name="docs">
  -  
         <taskdef name="dvsl" classname="org.apache.tools.dvsl.DVSLTask">
                           
             <classpath>
  @@ -164,4 +175,3 @@
     </target>
   
   </project>
  -
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to