| «« Read-Only CVS Access with pserver | DynDNS »» |
|
About
I'm Ryan Lowe, a Software Engineering graduate living in Ottawa, Canada. I like agile software development and Ruby on Rails.
I write this blog in Canadian English and don't use a spell checker. Typos happen.
Projects
» Full-time Ruby on Rails freelancer
» Full-time with Rails since May 2005 » Former committer for RadRails (now Aptana) » I also have a few Rails side-projects in development: 1. wheretogoinTO.com Toronto nightlife 2. Hey Heads Up! TODO list and sharing 3. Layered Genealogy family history research 4. foos for foosball scoring 5. fanconcert for music fans (on hold) Hiring Rails developers? I can telecommute by the hour from Ottawa, Canada »» Email: rails AT ryanlowe DOT ca
BulletBlog
Now hosted on Hey! Heads Up -- check it out!
Syndication
Pings
Recent
Derek Lowe's (Ryan's older brother) words at Ryan's funeral
blog@ryanlowe.ca no more Forging Email Headers: Good, Bad or Ugly? Sarcastic Dictionary (Part 1 of Many) Tags Hierarchies Twisting Rails is Risky Business Risky Business? My Take on Early Alphas Whoa, it's August 2007 Closing Comments A Postscript to "Growth at the grassroots" »» All Blog Posts
Linkage
del.icio.us/ryanlowe
technorati/ryanlowe.ca/blog Aurora Roy Jim Andrew Trasker Travis Kibbee Karen Dr. Unk Ayana Van Bloggers Joel Spolsky Robert Scoble Tim Bray Dave Winer Raymond Chen James Robertson Ruby/Rails Bloggers rubyonrails.org weblog David Heinemeier Hansson Dave Thomas James Duncan Davidson Mike Clark Jamis Buck Signal vs. Noise Tobias Luetke Amy Hoy: (24)slash7 Jeremy Voorhis Eclipse Bloggers Planet Eclipse EclipseZone Luis de la Rosa Eclipse Foundation Kim Horne Billy Biggs Ian Skerrett Mike Milinkovich Bjorn Freeman-Benson Denis Roy
Archives
|
Setting Up Ant on Linux
To set up Ant on the AudioMan development box I had to install Java first. I used the RPM method which installed Java in /usr/java/j2sdk1.4.2_03. 1. Download the binary distribution of Ant and unzip it into /usr/local. export ANT_HOME=/usr/local/apache-ant-1.6.0 3. Set the JAVA_HOME environment variable to the location of Java: export JAVA_HOME=/usr/java/j2sdk1.4.2_03 4. Add the Ant directory to the PATH environment variable: export PATH=$PATH:/usr/local/apache-ant-1.6.0/bin 5. Run ant with no parameters. You should get the error message: Buildfile: build.xml does not exist! Build failed. The next thing I want to do is check out the AudioMan project from CVS and build it with Ant. I could put those commands in a shell script and run it daily as a cron job. Posted at December 29, 2003 at 02:05 PM ESTLast updated December 29, 2003 at 02:05 PM EST Comments
What shell are you working in for all you commands? Is this bash? I know that for doing env vars it can be quite different from shell to shell... » Posted by: Jim at December 31, 2003 06:29 PMIt's the default shell installed with Red Hat 8. I think it's bash. » Posted by: Ryan at January 2, 2004 12:02 AMecho $SHELL » Posted by: roy at January 3, 2004 03:32 AMI should note that this returns your login shell. If you have entered another shell (like csh - c shell) after you logged in, then you will not get the proper identification. » Posted by: roy at January 3, 2004 03:36 AM |