minify-maven-plugin icon indicating copy to clipboard operation
minify-maven-plugin copied to clipboard

CSS files included out of order

Open garretwilson opened this issue 5 years ago • 0 comments

I'm trying to merge CSS files together, and the plugin isn't respecting the order.

<cssSourceIncludes>
  <cssSourceInclude>stuff.min.css</cssSourceInclude>
  <cssSourceInclude>license.css</cssSourceInclude>
  <cssSourceInclude>foo.css</cssSourceInclude>
  <cssSourceInclude>bar.css</cssSourceInclude>
</cssSourceIncludes>
<cssFinalFile>foobar.css</cssFinalFile>

The file license.css gets placed somewhere toward the end of the merged file.

Note that I even have minification turned off!

garretwilson avatar Sep 03 '18 17:09 garretwilson