atom feed23 messages in org.apache.ant.userRE: Building a hierarcical build-file...
FromSent OnAttachments
schmittOct 17, 2000 7:13 am 
Stefan BodewigOct 17, 2000 7:30 am 
Dino ValenteOct 17, 2000 8:19 am 
Stefan BodewigOct 17, 2000 8:34 am 
Craig R. McClanahanOct 17, 2000 8:44 am 
George McKInneyOct 17, 2000 8:44 am 
Mahlen MorrisOct 17, 2000 8:51 am 
Stefan BodewigOct 17, 2000 8:52 am 
Dino ValenteOct 17, 2000 9:06 am 
Stefan BodewigOct 17, 2000 9:21 am 
Craig R. McClanahanOct 17, 2000 9:55 am 
Dan SmithOct 17, 2000 10:11 am 
Chris ToddOct 17, 2000 5:24 pm 
Chris ToddOct 17, 2000 6:11 pm 
Diane HoltOct 17, 2000 10:48 pm 
Stefan BodewigOct 17, 2000 11:50 pm 
Stefan BodewigOct 18, 2000 12:53 am 
Stefan BodewigOct 18, 2000 1:10 am 
Stefan BodewigOct 18, 2000 1:34 am 
Douglas GuptillOct 18, 2000 1:48 pm 
Stefan BodewigOct 19, 2000 4:30 am 
Dino ValenteOct 20, 2000 7:55 am 
Stefan BodewigOct 20, 2000 7:58 am 
Subject:RE: Building a hierarcical build-file tree?
From:Mahlen Morris (mmor@yaltacomm.com)
Date:Oct 17, 2000 8:51:51 am
List:org.apache.ant.user

I have a system like this under Ant 1.1, and we've found it very handy. I wouldn't have bothered if I was just using it for nightly builds, but the build script(s) also deploy the newly built code into a developer's weblogic installation. Thus, one can change one's code in the source tree (in our case Perforce), type 'ant build deploy' in the directory where you changed the code (only building the package or parent package you just changed), and then restart weblogic and test your change. We were thrilled to pieces when it worked, as it saved people from scary and error-prone file-copying exercises.

Sometime when I don't have a deadline smacking me around the room, I'll post an in-depth description if people are interested.

mahlen

A man lives by believing in something, not by debating and arguing about many things. --Thomas Carlyle

-----Original Message----- From: schmitt [mailto:3155@gmx.net] Sent: Tuesday, October 17, 2000 7:13 AM To: ANT Subject: Building a hierarcical build-file tree?

Hello

I will use Ant to build my Java program. My program is built out of several components. I will have a build.xml file for every component and a control.xml file for the whole program. Is this possible and if, how?

The tree would look like this

control.xml / | \ / | \ build1.xml build2.xml build3.xml

Yours Stefan S.