Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Latest commit

 

History

History
136 lines (96 loc) · 6.09 KB

CHANGELOG.md

File metadata and controls

136 lines (96 loc) · 6.09 KB

Minify Maven Plugin

1.7.5

  • Add support for external bundle configuration (#57).
  • Replace prerequisites with Maven Enforcer plugin.
  • Remove the deprecated oss-parent from pom.xml (See OSSRH Apache Maven Guide).

1.7.4

  • Update Google Closure Compiler to v20140814 (#71).
  • Add support for Closure Library dependencies sorting (#70).
  • Add option to use default externs provided with the Google Closure Compiler (#67).

1.7.3

  • Improve docs: missing information about file order (#45).
  • Select the JVM default charset as the value for the charset option when none is defined (#48).
  • Add a warning message to nosuffix option Javadoc (#50).
  • Add support for JavaScript Source Maps (#41).
  • Update Google Closure Compiler to v20140625.
  • Add support for Google Closure Compiler angular_pass option (#60).
  • Rename yuiLinebreak option to yuiLineBreak.
  • Rename yuiMunge option to yuiNoMunge.
  • Rename yuiPreserveAllSemiColons option to yuiPreserveSemicolons.
  • Fail build when a specified source file is not found (#53).

1.7.2

  • Update default charset value to ${project.build.sourceEncoding}.
  • Deprecate the option debug. verbose should be used instead.
  • Change YUI option's names to clearly indicate that they are specific to YUI Compressor.
  • Update Google Closure Compiler to v20130823.
  • Add support for Google Closure Compiler language option (#24).
  • Add support for Google Closure Compiler compilation_level option.
  • Add support for Google Closure Compiler externs option (#22).
  • Fail build with Google Closure Compiler on parse errors.

1.7.1

  • Update Google Closure Compiler to v20130722.
  • Preserve sub-directory structure when only minifying (#29).
  • Delete transient .tmp file on spot in case of nosuffix = true (#32).
  • Use annotations to generate the plugin descriptor file.

1.7

  • Added nosuffix option to avoid the suffix .min on the minified output file name (#16).
  • Option to use same subdirectory on target as in source (#17).
  • Build should fail if compiler can't parse/compile source files (#19).
  • Add UTF-8 as the default charset.
  • Log compression gains.
  • Require Java SE 7 for better resource management. See AutoCloseable interface and try-with-resources statements.

1.6

1.5.2

  • New goal parameter to log full source file paths and new FAQ entry pointing to the plugin goal parameters (#5).
  • Option to skip the minify step (#11).
  • Option to skip the merge step (#13).

1.5.1

  • Cannot process the same file name of files in different directories (#2).
  • CSS minification fails for base64 encoded background images (#3).

1.5

  • Fix charset issue (#1).

  • Update Maven site skin.

  • Use ExecutorService to wait for all tasks to finish.

  • Add support for CLI-based configuration and Maven 2.2.1. From Configuring Plugin Goals in Maven 3:

    For many plugin parameters it is occasionally convenient to specify their values from the command line via system properties. In the past, this was limited to parameters of simple types like String or Boolean. The latest Maven release finally allows plugin users to configure collections or arrays from the command line via comma-separated strings. Take for example a plugin parameter like this:

    /** @parameter expression="${includes}" */
    String[] includes;
    

    This can be configured from the command line as follows:

    mvn <goal> -Dincludes=Foo,Bar
    

    Plugin authors that wish to enable CLI-based configuration of arrays/collections just need to add the expression tag to their parameter annotation. Note that if compatibility with older Maven versions is to be kept, the parameter type must not be an interface but a concrete collection class or an array to avoid another shortcoming in the old configurator.

1.4

1.3.5

  • Lift restriction that prevented the final file name to be the same as an existing source file name.

1.3.4

  • Update YUI Compressor to version 2.4.6.

1.3.3

  • Add debug messages for wrong source file names and source directory paths.

1.3.2

  • Add cssTargetDir, jsTargetDir, suffix, and charset parameters.

1.3.1

  • Class java.util.List cannot be instantiated while running Maven minify goal with versions previous to 3.0.

1.3

  • Change exclude/include patterns from a comma separated String to List<String>. Also included a custom file comparator that only compares the file name instead of the full file path.
  • Update YUI Compressor dependency to version 2.4.2.

1.2.1

  • Don't crash with an IndexOutOfBoundsException when a source file does not exist.
  • More accurate logging.
  • Configure POM to inherit from Sonatype OSS Parent POM.

1.2

  • Add exclude/include patterns, with the caveat that the developer must name their source files so their lexicographical order is correct for minifying.
  • Don't minify a file type if the list of files to process is empty.
  • Make JavaScript minify error messages clearer.
  • Make file extensions configurable (e.g. it's now possible to save a JavaScript file as *.jsp or *.php).
  • Compile against JDK 1.5 instead of JDK 1.6.