summaryrefslogtreecommitdiff
path: root/bootstrap.bat
Commit message (Collapse)AuthorAgeFilesLines
* pr 48896 Jacobus Martinus Kruithof2010-03-121-1/+3
| | | | | | tools.jar no longer present on bootstrap classpath git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@922178 13f79535-47bb-0310-9956-ffa450edef68
* remove old Java hintJan Materne2010-03-021-2/+3
| | | | | | | add requirement Java1.4+ typo git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@917887 13f79535-47bb-0310-9956-ffa450edef68
* Removing stale references to xercesImpl.jar and xml-apis.jar.Jesse N. Glick2010-02-181-3/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@911561 13f79535-47bb-0310-9956-ffa450edef68
* add o.a.t.a.property to bootstrap compilationPeter Reilly2007-08-221-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@568513 13f79535-47bb-0310-9956-ffa450edef68
* Should make Gump happy:Jan Materne2006-09-191-6/+5
| | | | | | | | | | | | | | # Start Time: Tue, 19 Sep 2006 00:26:54 (PDT) # End Time: Tue, 19 Sep 2006 00:27:10 (PDT) BUILD FAILED /x1/gump/public/workspace/ant/build.xml:1072: The following error occurred while executing this line: /x1/gump/public/workspace/ant/build.xml:500: resourcecount doesn't support the nested "intersect" element. <intersect> is a Resource and Resources were not part of the thin-layer of Ant's bootstrap. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@447800 13f79535-47bb-0310-9956-ffa450edef68
* copy2license.plStefan Bodewig2006-09-011-13/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@439448 13f79535-47bb-0310-9956-ffa450edef68
* date updateSteve Loughran2005-01-261-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277470 13f79535-47bb-0310-9956-ffa450edef68
* handle no javac on command line better.Steve Loughran2005-01-261-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277467 13f79535-47bb-0310-9956-ffa450edef68
* fix licenseStefan Bodewig2004-10-061-2/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276915 13f79535-47bb-0310-9956-ffa450edef68
* Fix bootstrap scriptsStefan Bodewig2003-07-211-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274872 13f79535-47bb-0310-9956-ffa450edef68
* Merge changes made to 1.5 Beta1.Magesh Umasankar2002-06-011-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272826 13f79535-47bb-0310-9956-ffa450edef68
* There is no reason to expect subclasses for ZipShort and ZipLongStefan Bodewig2002-04-161-1/+1
| | | | | | | 2002 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272468 13f79535-47bb-0310-9956-ffa450edef68
* Moving from Crimson 1.1.3 to Xerces 2.0.1Stephane Bailliez2002-04-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272467 13f79535-47bb-0310-9956-ffa450edef68
* Add some more copyright notices.Stefan Bodewig2002-01-101-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270659 13f79535-47bb-0310-9956-ffa450edef68
* Don't keep old testcases around when doing a bootstrap build.Stefan Bodewig2001-12-111-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270116 13f79535-47bb-0310-9956-ffa450edef68
* Add meta section: FAQ about the FAQ.Stefan Bodewig2001-11-221-1/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269991 13f79535-47bb-0310-9956-ffa450edef68
* Fix up packaging of bzip utilities.Peter Donald2001-11-161-1/+1
| | | | | | | Submitted by: "Magesh Umasankar" <umagesh@rediffmail.com> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269926 13f79535-47bb-0310-9956-ffa450edef68
* Here are two new ant tasks - BZip2 and BUnzip2. �ThesePeter Donald2001-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | two tasks use the BZip2 compression algorithm (Visit: http://sourceware.cygnus.com/bzip2/�for more info.) for packing and unpacking. These tasks resemble GZip and GUnzip tasks in input, input validation, etc. �Hence, I refactored GZip and GUnzip tasks as well so that the tasks GZip and BZip2 extend from a common base class named Pack, and GUnzip and BUnzip2 extend from a common base class named Unpack. �This lays the foundation for creating more Pack tasks based on different algorithms like lzop, etc. in the future. The BZip2 and BUnzip2 tasks depend upon 4 classes: BZip2Constants.java CBZip2InputStream.java CBZip2OutputStream.java CRC.java Keiron Liddle (keiron@aftexsw.com) has graciously accepted to contribute the above code files he has authored, under ASF license - many thanks to him. �I have packaged them under org.apache.tools.bzip2, mimicking the package naming style that has been used for zip and tar tools we already have. �I have also given proper credits to him in the code. �Perhaps, this needs to exist under jakarta-commons, as Stefan had suggested, but till then... Submitted by: "Magesh Umasankar" <umagesh@rediffmail.com> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269919 13f79535-47bb-0310-9956-ffa450edef68
* Add documentation for the replaceregexp taskStefan Bodewig2001-11-121-1/+1
| | | | | | | Submitted by: Matthew Inger <matti@sedonacorp.com> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269900 13f79535-47bb-0310-9956-ffa450edef68
* Bootstraps are not cleaning up after themselves.Sam Ruby2001-10-231-4/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269812 13f79535-47bb-0310-9956-ffa450edef68
* Final merge from 1.4 treeConor MacNeill2001-08-301-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269664 13f79535-47bb-0310-9956-ffa450edef68
* Explicitly compile the stuff that javac will pick up because ofStefan Bodewig2001-08-071-1/+1
| | | | | | | dependencies anyway. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269481 13f79535-47bb-0310-9956-ffa450edef68
* Use /nul when checkign for the existence of directories on WindowsConor MacNeill2001-07-121-7/+7
| | | | | | | | | | | (Although it doesn't work if the directory name is quoted - woohoo) Check for Ant in C:\Ant for Windows 9X users PR: 2101 Based on suggestion by eswierk@cs.stanford.edu (Ed Swierk) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269331 13f79535-47bb-0310-9956-ffa450edef68
* Make Ant work with spaces everywhere.Conor MacNeill2001-07-071-5/+5
| | | | | | | PR: 562 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269284 13f79535-47bb-0310-9956-ffa450edef68
* More JDK 1.1 issues. Culprits have been <pvcs>, <record> and the newStefan Bodewig2001-04-241-1/+1
| | | | | | | zip package. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268962 13f79535-47bb-0310-9956-ffa450edef68
* Enable bootstrap to be executed multiple times without prompting onSam Ruby2001-03-071-0/+2
| | | | | | | | Windows. Does not appear to be a problem on Unix. ---------------------------------------------------------------------- git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268768 13f79535-47bb-0310-9956-ffa450edef68
* Update to Jaxp 1.1Conor MacNeill2001-03-041-2/+2
| | | | | | | Also - handle spaces in classpaths git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268755 13f79535-47bb-0310-9956-ffa450edef68
* Added -emacs flag.Peter Donald2001-02-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268737 13f79535-47bb-0310-9956-ffa450edef68
* Merge of 1.3 branch changes into the main branchConor MacNeill2001-02-131-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268652 13f79535-47bb-0310-9956-ffa450edef68
* Copy - which is to save compiling files which have already been compiledConor MacNeill2001-02-041-1/+2
| | | | | | | now goes to the right place. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268578 13f79535-47bb-0310-9956-ffa450edef68
* Build process tweaks. Source distribution now builds out of box onConor MacNeill2001-02-021-2/+2
| | | | | | | Solaris. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268560 13f79535-47bb-0310-9956-ffa450edef68
* Further tuning of the build scripts. The bootstrap now goes intoConor MacNeill2001-01-311-2/+2
| | | | | | | | the bootstrap directory to minimise interference with the CVS lib directory. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268545 13f79535-47bb-0310-9956-ffa450edef68
* Revert build process to old style for 1.3 releaseConor MacNeill2001-01-301-12/+22
| | | | | | | Rewrote build.xml using most of the ideas from the new build process git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268542 13f79535-47bb-0310-9956-ffa450edef68
* Made sure environment is left cleanerPeter Donald2001-01-231-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268510 13f79535-47bb-0310-9956-ffa450edef68
* Work in almost all of Conors suggestionsPeter Donald2001-01-231-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268507 13f79535-47bb-0310-9956-ffa450edef68
* Checked in alpha version of new build system.Peter Donald2001-01-231-23/+15
| | | | | | | May not fully build on *nix platforms yet. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268504 13f79535-47bb-0310-9956-ffa450edef68
* Added the JAXP reference distribution jars to make it easier to buildConor MacNeill2000-12-201-1/+1
| | | | | | | | | | | | | ant out of the box. Ant should now build with an empty classpath. I haven't made the changes for Unix scripts yet. Also separated the building of ant.jar and optional.jar so that local builds should more closely match distributions. There is a lot of duplication between a normal build and a distribution build which can probably be readily removed now. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268380 13f79535-47bb-0310-9956-ffa450edef68
* Forgot to adapt bootstrap.bat.Stefan Bodewig2000-11-291-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268265 13f79535-47bb-0310-9956-ffa450edef68
* New Mapper type for regular expression replacements. Currently onlyStefan Bodewig2000-11-281-1/+1
| | | | | | | jakarta-regexp is supported, at least an ORO implementation will follow. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268257 13f79535-47bb-0310-9956-ffa450edef68
* First part of the scanDir refactoring. This is just a starter to showStefan Bodewig2000-11-151-1/+1
| | | | | | | | | | | | | | | | what I want to accomplish. All tasks using a scanDir method to find the source files that are newer than there targets should get a similar treatment as <copy>. The major benefit is not to have the functionality in one place but the added flexibility you get, when you allow the user to specify a custom FileNameMapper to a task (not there yet). Nothing (especially not the names) is carved into stone of course. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268190 13f79535-47bb-0310-9956-ffa450edef68
* Copy types/defaults.properties during bootstrap.Stefan Bodewig2000-10-171-1/+2
| | | | | | | | | | Submitted by: Cheng-Wei Cheng <CCheng@gluecode.com> Changed the JIKESON env variable from my last patch to ANT_OPTS to be consistent with src/bin/ant. Made the same changes to bootstrap.bat. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268098 13f79535-47bb-0310-9956-ffa450edef68
* Change the order parts are added to the CLASSPATH in bootstrap scripts.Stefan Bodewig2000-09-081-1/+1
| | | | | | | | PR: Bug 24, Bug Report 75 Submitted by: Mason J Warner <mjw@novanews.com> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267976 13f79535-47bb-0310-9956-ffa450edef68
* New Execution Framework.Stefan Bodewig2000-07-191-1/+1
| | | | | | | | | | | | | This new framework should ease development of tasks that need to execute external processes. <exec> now invokes ExecTask, a reimplementation of Exec that uses the new framework but has some additional features. Submitted by: Thomas Hass <thomas.haas@softwired-inc.com> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267799 13f79535-47bb-0310-9956-ffa450edef68
* New build procedure for Unix based systemsConor MacNeill2000-07-131-10/+15
| | | | | | | | | | | | | | | | | | | | This is the update for the Unix based build scripts. The changes are the following Automatic bootstrapping if lib/ant.jar is mising or the bin files are not present Removed inclusion of the $HOME/.antrc in the bootstrap.sh although it is still used in the ant shell script. Lined up Windows and Unix scripts, including echo statements so it is easier to make changes affecting both envionments in the future. Added chmod calls to the install targets so the ant shell scripts are executable. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267777 13f79535-47bb-0310-9956-ffa450edef68
* Make sure bootstrap uses the src version of lcp.batConor MacNeill2000-07-121-3/+3
| | | | | | | Submitted by: Christopher Elkins <celkins@scardini.com> git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267774 13f79535-47bb-0310-9956-ffa450edef68
* Rework the ant build process for NT/WindowsConor MacNeill2000-07-121-4/+5
| | | | | | | | | Change so that build.bat is used just to build ant itself. ant.bat should be used to run ant for other projects. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267770 13f79535-47bb-0310-9956-ffa450edef68
* Fix problem bootstrapping under JDK 1.1Conor MacNeill2000-07-081-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267744 13f79535-47bb-0310-9956-ffa450edef68
* Pick up jar files from the lib directory in the bootstrap processSam Ruby2000-07-071-4/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267741 13f79535-47bb-0310-9956-ffa450edef68
* Create an install targetConor MacNeill2000-07-021-0/+1
| | | | | | | | | Ant now builds ant.jar in the build area. A separate 'install' target copies it into ant.home. Bootstrap has been updated to perform this install step. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267724 13f79535-47bb-0310-9956-ffa450edef68
* Make sure bootstrap builds start with a clean build area.Conor MacNeill2000-06-301-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267718 13f79535-47bb-0310-9956-ffa450edef68