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.jswhere 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.xmlas 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.
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:11pom.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