This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I am using YUI Compressor to compress Javascript & CSS files. The files that get generated have a suffix "-min" added to it.
We have an option to disable them. The YUI Compressor is used as part of the Maven build process.
All of my JSP's have a link to "un-minified" versions of JS & CSS files. Now when the minified files are generated, how do I update
all my JSP's to link to the new files. I don't want to remove the "-min" option.
You can edit every single JSP to reference the minified files.
Why don't you want to use the option to not add the -min suffix? The YUI Compressor plugin should be copying the JS and CSS files from the src to the target directory, so there will be no problem between telling apart the original files and the minified files.