Java Build Systems, Part 1: What they do

Two recent posts on the java-weblog circuit spurred me to motion:

Maven Adoption Curve (Alex Miller, coworker at MetaMatrix)
Maven and Ivy
(Ryan Senior, coworker at BJC)

I was trying to think of the ideal build system.  I won’t pretend that I’m going to get there in this post.  Instead, I’ll enumerate what we do every day and what we need from a build system so as to start thinking about the ideal system.

So, to the brainstorming.  Here’s what we do in the regular process of our osgi bundle development:

  1. Obtain dependencies
  2. Compile java source
  3. Compile javafx source
  4. Generate metadata / configuration data
  5. Make jar files
  6. Upload jar files to central repository
  7. Upload jar files to deployment location
  8. Update remote (OBR) xml file with information about uploaded jar
  9. Generate reports about the quality of the source (clover, PMD, checkstyle, etc)
  10. check out from CVS / source control
  11. check in to CVS / source control
  12. tag CVS / source control
  13. manage versions and releases

I’m sure there are more.  Obviously, under web development, you’d deal with wars and their deployment.  We have ssh tasks to run code on the server.  We even have some install/run stuff that works pretty well.

You may have guessed we use maven.  Maven is so close, but just not there.  It is frustrating, performs a lot of magic, and just falls down in annoying ways.  We have gotten it to do all of the above, some of it is just not pretty.

Next episode, I’ll go into Maven and what it does well and what it does poorly.  Stay tuned!

This entry was posted in java and tagged , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published.