jvanzyl     2003/07/27 16:50:36

  Modified:    .        build-bootstrap.xml
  Log:
  o I'm reverting this as the endorsed jar thing breaks the bootstrap as
    it's looking for the xml-apis jar.
  
  Revision  Changes    Path
  1.203     +4 -15     maven/build-bootstrap.xml
  
  Index: build-bootstrap.xml
  ===================================================================
  RCS file: /home/cvs/maven/build-bootstrap.xml,v
  retrieving revision 1.202
  retrieving revision 1.203
  diff -u -r1.202 -r1.203
  --- build-bootstrap.xml       26 Jul 2003 00:29:44 -0000      1.202
  +++ build-bootstrap.xml       27 Jul 2003 23:50:36 -0000      1.203
  @@ -8,12 +8,8 @@
     <property environment="env"/>
     <property name="maven.home" value="${env.MAVEN_HOME}"/>
   
  -  <target name="check-env" description="Check if environment variables are set">
  -    <echo>maven.home = ${maven.home}</echo>
  -    <fail unless="env.MAVEN_HOME" message="You MUST set MAVEN_HOME first"/>
  -  </target>
   
  -  <target name="env" depends="check-properties,check-env">
  +  <target name="env" depends="check-properties">
      <echo>maven.home = ${maven.home}</echo>
      <echo>maven.home.local = ${maven.home.local}</echo>
      <echo>maven.repo.local = ${maven.repo.local}</echo>
  @@ -182,18 +178,11 @@
       <mkdir dir="${maven.bootstrap.install.dir}/lib/endorsed" />
       <copy todir="${maven.bootstrap.install.dir}/lib/endorsed">
         <fileset dir="${maven.bootstrap.install.dir}/lib">
  -        <include name="xml-apis-*.jar" />
  -        <include name="xerces-*.jar" />
  +        <include name="xml-apis*.jar" />
  +        <include name="xerces*.jar" />
  +        <include name="piccolo*.jar" />
         </fileset>
       </copy>
  -
  -    <!-- Don't duplicate endorsed files -->
  -    <delete>
  -      <fileset dir="${maven.bootstrap.install.dir}/lib">
  -        <include name="xml-apis-*.jar" />
  -        <include name="xerces-*.jar" />
  -      </fileset>
  -    </delete>
   
       <!-- Install maven in the lib directory -->
   
  
  
  

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

Reply via email to