I'm thinking of getting rid of Maven. It's alright for simple applications, but I'm running into problems that I can't solve, nobody else seems to be able to solve them, and even the Maven mailing list doesn't have a solution.

What are some modern build tools for Java that provide what Maven provides, but also are equipped to deal with the challenges of making modern web applications? For example, if I want to use a Javascript minification tool, such as the YUI compressor, it will easily and effortlessly let me compress/aggregate my css and javascript just before the War file is created.

  • Explanation: The problem with maven is that there is no way to do things inside of the war plugin. For example, I want to call the yui compressor just after it copies over the webapp's resources (css, images, javascripts, etc.). If I could do this, it would ensure that any uncompressed javascript files (that were excluded in the YUI compressor's minification/aggregation process) were part of the final war package. This is not possible

    The YUI compressor only works if you plan on compressing and/or aggregating all your files as opposed to a subset. There are javascript files like jscharts.js where you need to exclude them from the minification process because they otherwise mess up the actual source code. There is no way to deal with this use-case in Maven, even though the solution is simple.

Having the ability to use live javascript vs. compressed/aggregated javascript would also be a big boon.

  • Explanation: It's also hard to refactor your massive javascript includes with those in your html files. Let's say you have 100 javascript files, and you want the ability to use your live javascript files for development, but you want to use the compressed/aggregated ones for production. You still need to include all the javascript files in your html templates (freemarker for example) because you want to deal with the live ones during development. For production, you also have to maintain a separate list in the maven pom.xml as well, in order to aggregate them.

    Both of these lists of javascript files are basically identical, and it's an extra burden for the developer to ensure they include the same files and in the same order :( Maven isn't helping with such a common web-related problem for year 2011. The Rails 3.1 folks though get this for free. We can do better.

I still need the ability to have filters, just like in maven, to handle different production environments. For example, I often use property files to change values in the applicationContext.xml for Spring, or the servlet context.

I also need the ability to add resources to the classpath. I have these massive text files that provide me with the basic functionality of a dictionary, thesaurus, etc. I need to put these in my classpath.

It would be great if the build tool also used the Maven repositories.

Any other benefits, such as more simplicity and writing less configuration code would be a plus, but the features I listed above are paramount.

Thank you.

link|improve this question

74% accept rate
Can you mention the problem you are referring to? – Alejandro Diaz Dec 5 '11 at 2:56
@Alejandro Diaz Mostly the javascript things I mention. I've been spending days trying to get it to work. I've come up with 6 workarounds, but everyone introduces yet another problem I will not settle for. I want something that was build with this in mind. I don't want a work-around. Even if there is a solution (to which nobody seems to know), I think it's not a good sign that it took days to figure it out. That's kind of crazy. – egervari Dec 5 '11 at 3:47
I used to work in a big project were we used the YUI compressor + resource versioning. I don't remember having problems with it (I'm talking about a big project...) There are other cool tools... but, Maven is widely use and easy to extend. Probably a good idea is to came up with your own custom plugin instead of spending days finding a workaround. I'm not saying Maven is the answer for everyone... but, you are already using it. – Alejandro Diaz Dec 5 '11 at 11:47
@Alejandro Diaz I would have to go to a plugin approach. The problem with maven is that there is no way to do things inside of the war plugin. For example, I want to call the yui compressor just after it copies over the resources. This will ensure that any uncompressed javascript files (that were excluded) are part of the final war. YUI compressor only works if you plan on compressing and/or aggregating every file, but for some javascript files like jscharts.js, you can't do this because it'll mess up. It's also hard to refactor your massive javascript includes with those in your html files. – egervari Dec 5 '11 at 16:11
1  
@Alejandro Diaz Let me explain further. Let's say you have 100 javascript files, and you want the ability to use your live javascript files for development, but you want to use the compressed/aggregated ones for production. You still need to include all the javascript files in your html templates (freemarker for example) and you also have to maintain a separate list in the maven pom.xml. These lists are basically identical, and it's an extra burden on me to ensure they include the same files and in the same order :( Maven isn't helping with such a common web-related problem for year 2011. – egervari Dec 5 '11 at 16:14
show 1 more comment
feedback

closed as not constructive by Jacob, casperOne Dec 6 '11 at 3:09

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

You ought to be able to do all of that in Gradle. Essentially, its a set of libraries and modules in Groovy that give you a lot of power for putting together your build. If you need to extend it, then you write your extension in Groovy. Its quite nice.

link|improve this answer
feedback

If you are into learning Scala then I highly recommend SBT. We use it to build all our Java code and have been perfectly happy with it. It does neat things such as parallel builds and unlike ANT/Maven its incremental compilation actually seams to work. Also it includes a nice REPL that allows you to interact directly with the build and your code.

SBT is easy to extend as it's build files are written in code rather than XML. So plugins exists for everything your heart can desire, for example:

As for project dependencies, these can be both managed (downloaded automatically from Maven/Ivy) or unmanaged (i.e. resources (jar's, files, ...) you add yourself) - they can also be mixet and matched.

SBT uses the standard Maven directory layout (although this can easily be changed), has great support for IDE's (fx. Eclipse and Idea) and it can also produce a pom file for you if you should so desire.

There is a very good guide to get you started quickly with SBT here

link|improve this answer
Do you have evidence/confirmation that it will do everything I want, and easily? – egervari Dec 5 '11 at 3:48
@egervari updated the post with more info on your specific points. – Lars Tackmann Dec 5 '11 at 3:57
I'll definitely take a look at this. I hope it's easy to maintain only a single list of ordered javascript files - so I can pass them into the yui compressor, and also into my html template for my main site layout. This is very difficult to do with maven/spring. I hope other people wanted this and it's already available. – egervari Dec 5 '11 at 6:59
it's too bad, but that yui compressor isn't sophisticated enough. I'd probably have to build my own too. I think even maven's plugin is better in many ways. The fault, though, is with maven's rigidity and inability to get at things, customize things and easily add little bits of functionality before or after things occur. – egervari Dec 5 '11 at 16:22
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.