Log of /ant/core/trunk/bootstrap.bat
Parent Directory
|
Revision Log
Revision
447800 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Tue Sep 19 10:29:36 2006 UTC
(3 years, 2 months ago)
by
jhm
File length: 4383 byte(s)
Diff to
previous 439448
(
colored)
Should make Gump happy:
# 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.
Revision
269919 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Thu Nov 15 09:14:10 2001 UTC
(8 years ago)
by
donaldp
File length: 2683 byte(s)
Diff to
previous 269900
(
colored)
Here are two new ant tasks - BZip2 and BUnzip2. �These
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>
Revision
269331 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 12 12:12:51 2001 UTC
(8 years, 4 months ago)
by
conor
File length: 2624 byte(s)
Diff to
previous 269284
(
colored)
Use /nul when checkign for the existence of directories on Windows
(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)
Revision
268768 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Mar 7 18:53:13 2001 UTC
(8 years, 8 months ago)
by
rubys
File length: 2571 byte(s)
Diff to
previous 268755
(
colored)
Enable bootstrap to be executed multiple times without prompting on
Windows. Does not appear to be a problem on Unix.
----------------------------------------------------------------------
Revision
268545 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Jan 31 09:42:04 2001 UTC
(8 years, 9 months ago)
by
conor
File length: 2268 byte(s)
Diff to
previous 268542
(
colored)
Further tuning of the build scripts. The bootstrap now goes into
the bootstrap directory to minimise interference with the CVS lib
directory.
Revision
268542 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Tue Jan 30 15:08:30 2001 UTC
(8 years, 9 months ago)
by
conor
File length: 2225 byte(s)
Diff to
previous 268510
(
colored)
Revert build process to old style for 1.3 release
Rewrote build.xml using most of the ideas from the new build process
Revision
268380 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Dec 20 11:18:13 2000 UTC
(8 years, 11 months ago)
by
conor
File length: 2195 byte(s)
Diff to
previous 268265
(
colored)
Added the JAXP reference distribution jars to make it easier to build
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.
Revision
268257 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Tue Nov 28 15:10:38 2000 UTC
(8 years, 11 months ago)
by
bodewig
File length: 2140 byte(s)
Diff to
previous 268190
(
colored)
New Mapper type for regular expression replacements. Currently only
jakarta-regexp is supported, at least an ORO implementation will follow.
Revision
268190 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Nov 15 17:45:41 2000 UTC
(9 years ago)
by
bodewig
File length: 2097 byte(s)
Diff to
previous 268098
(
colored)
First part of the scanDir refactoring. This is just a starter to show
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.
Revision
268098 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Tue Oct 17 11:09:12 2000 UTC
(9 years, 1 month ago)
by
bodewig
File length: 2073 byte(s)
Diff to
previous 267976
(
colored)
Copy types/defaults.properties during bootstrap.
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.
Revision
267976 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Fri Sep 8 15:40:38 2000 UTC
(9 years, 2 months ago)
by
bodewig
File length: 1988 byte(s)
Diff to
previous 267799
(
colored)
Change the order parts are added to the CLASSPATH in bootstrap scripts.
PR: Bug 24, Bug Report 75
Submitted by: Mason J Warner <mjw@novanews.com>
Revision
267799 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 19 13:00:46 2000 UTC
(9 years, 4 months ago)
by
bodewig
File length: 1988 byte(s)
Diff to
previous 267777
(
colored)
New Execution Framework.
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>
Revision
267777 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Thu Jul 13 15:23:48 2000 UTC
(9 years, 4 months ago)
by
conor
File length: 1963 byte(s)
Diff to
previous 267774
(
colored)
New build procedure for Unix based systems
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.
Revision
267774 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 12 22:30:39 2000 UTC
(9 years, 4 months ago)
by
conor
File length: 1901 byte(s)
Diff to
previous 267770
(
colored)
Make sure bootstrap uses the src version of lcp.bat
Submitted by: Christopher Elkins <celkins@scardini.com>
Revision
267770 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 12 15:54:17 2000 UTC
(9 years, 4 months ago)
by
conor
File length: 1877 byte(s)
Diff to
previous 267744
(
colored)
Rework the ant build process for NT/Windows
Change so that
build.bat is used just to build ant itself.
ant.bat should be used to run ant for other projects.
Revision
267724 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Sun Jul 2 16:29:40 2000 UTC
(9 years, 4 months ago)
by
conor
File length: 1732 byte(s)
Diff to
previous 267718
(
colored)
Create an install target
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.
Revision
267634 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Fri Mar 17 23:15:35 2000 UTC
(9 years, 8 months ago)
by
jhunter
File length: 1738 byte(s)
Diff to
previous 267633
(
colored)
Stopped the script from blowing away the JAVA_HOME/JAVA/JAVAC/CLASSPATH values.
Without this fix it didn't work on my NT JDK 1.3b system. I've tested the
current script on JDK 1.3b and JDK 1.2 and it now respects JAVA_HOME.
Revision
267552 -
(
view)
(
annotate)
-
[select for diffs]
Modified
Fri Jan 14 13:50:24 2000 UTC
(9 years, 10 months ago)
by
rubys
File length: 1590 byte(s)
Diff to
previous 267550
(
colored)
Allow jakarta-ant to be build into an "ANT_HOME" structure in place.
Move implicit tasks into an explicit init target
This form allows you to request diffs between any two revisions of this file.
For each of the two "sides" of the diff,
enter a numeric revision.