This post originated from an RSS feed registered with Java Buzz
by Vinny Carpenter.
Original Post: GenJar - Java app deployment made easy -
Feed Title: Vinny Carpenter's Blog
Feed URL: http://www.j2eegeek.com/error.html
Feed Description: Welcome to my blog. I am a total Java geek that lives in Milwaukee, making my living as an architect/developer, spending all my time with Java, J2EE, OO, Linux, and open source. In my spare time, when I am not in front of my computers, I spend every other minute with my other loves: My wife, books, music, guitars, Formula-1 racing and StarGate. Check out my blog @ http://www.j2eegeek.com/blog
GenJar is distributed as a jar file that holds a bunch of ant tasks. The task is designed to recursively examine each class file in your project, extracting a list of all classes referenced, eventually arriving at the complete set of classes required to execute the application. These classes are then placed into the target jar file creating easily deployable archives. In addition to the jar file, GenJar will also create generate a manifest file, listing every file contained in the Jar, along with size and creation dates.
This is such a neat little utility that is really cool -- I do most of my development with WebLogic and all of the WebLogic classes are deployed in a single jar file, weblogic.jar. With v8.1 of WebLogic, the weblogic.jar file is now about 36 MB. Yikes. Hate to deploy that with every client and WebLogic's answer in this area is a crappy little tool called verboseToZip that does not even address the issue. Nice job John & Jesse.