Skip to content

jradolfo/bundler-maven-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bundler-maven-plugin

Build Status Maven Central

Maven plugin for creating bundle packages of minified JS and CSS files in Maven project.

This is a fork of https://github.com/CH3CHO/bundler-maven-plugin wich was forked from https://github.com/kospiotr/bundler-maven-plugin.

Inspired by: https://github.com/dciccale/grunt-processhtml

This fork allows the use of EL expression like #{request.contextPath}" and #{facesContext.externalContext.request.contextPath} in the srcPath of the elements in order to address the application context path. Whenever those EL expressions are found, they're replaced by inputBaseDir for processing purpose. As we use JSF facelets as page templates, becomes hard to maintain a relative relation between resources because we never know where the final rendered page will be. That's why the context path el expression becomes necessary.

Goals

  • process - analyse input html file for special comment block, create bundle resource packages and outputs html file with bundled blocks. Bundled resources are concatenated, minimized, optimized and if requested checksum is computed and used with bundled filename. (see example below)

Configuration properties

Property Description Sample Value
inputFilePath The path of a file to be optimized ${project.basedir}/src/main/resources/index.html
outputFilePath The output path of the optimized file ${project.build.outputDirectory}/index.html
inputBaseDir The root path of application resources ${project.basedir}/src/main/webapp/
outputBaseDir The root path to output processed resources ${project.build.outputDirectory}/#{projec.finalName}/resources/
hashingAlgorithm The algorithm used to generated hash of the file content to be used in the output file name
Possible values: MD5(default), SHA-1, SHA-256, SHA-384, SHA-512
MD5
verbose Whether to enable detailed output of the bundling process
Default: false
true
cssOptimizer The name of optimizer used to process CSS files.
Possible values: simple (default), yui, none
When choosing none, no optimization shall be performed. Contents from input files will just be concatenated and saved into the output file.
simple
jsOptimizer The name of optimizer used to process CSS files.
Possible values: simple (default), yui, none
When choosing none, no optimization shall be performed. Contents from input files will just be concatenated and saved into the output file.
simple
munge Should be true if the compressor should shorten local variable names when possible.
Only works if jsOptimize is set toyui.
Default: true
true
preserveAllSemiColons Should be true if the compressor should preserve all semicolons in the code.
Only works if jsOptimize is set toyui.
Default: true
true
disableOptimizations Should be true if the compressor should disable all micro optimizations.
Only works if jsOptimize is set toyui.
Default: true
true

Use Case

Consider a Maven project where you files are distributed as follow:

${project.basedir}/src/main/webapp/page1.xhtml
${project.basedir}/src/main/webapp/module/page2.xhtml
${project.basedir}/src/main/webapp/templates/template.xhtml
${project.basedir}/src/main/webapp/resources/css/stylesheet1.js
${project.basedir}/src/main/webapp/resources/css/folder/stylesheet2.js
${project.basedir}/src/main/webapp/resources/js/script1.js
${project.basedir}/src/main/webapp/resources/js/folder/script2.js
${project.basedir}/src/main/webapp/resources/images/image1.png
${project.basedir}/src/main/webapp/resources/images/folder/image2.png

and we want then to be outputted like this:

${project.build.outputDirectory}/#{projec.finalName}/page1.xhtml
${project.build.outputDirectory}/#{projec.finalName}/module/page2.xhtml
${project.build.outputDirectory}/#{projec.finalName}/templates/template.xhtml
${project.build.outputDirectory}/#{projec.finalName}/resources/css/stylesheet-4971211a240c63874c6ae8c82bd0c88c.min.css
${project.build.outputDirectory}/#{projec.finalName}/resources/js/script-0874ac8910c7b3d2e73da106ebca7329.min.js
${project.build.outputDirectory}/#{projec.finalName}/resources/images/image1.png
${project.build.outputDirectory}/#{projec.finalName}/resources/images/folder/image2.png

Usage

Configure plugin:

     <properties>
	    <processed.files.dir>${project.build.directory}/my-processed-files</processed.files.dir>
     </properties>

      <plugin>
        <groupId>com.github.jradolfo</groupId>
        <artifactId>bundler-maven-plugin</artifactId>
        <version>1.2</version>
        <executions>
          <execution>
            <id>bundle</id>
            <goals>
              <goal>process</goal>
            </goals>
            <configuration>             
           	  <cssOptimizer>yui</cssOptimizer>
			  <jsOptimizer>yui</jsOptimizer> 
              <inputFilePah>${project.basedir}/src/main/webapp/templates/template.html</inputFilePah>
	          <outputFilePath>${processed.files.dir}/templates/template.html</outputFilePath>
	          <outputBaseDir>${processed.files.dir}/</outputBaseDir>			
            </configuration>
          </execution>
        </executions>
      </plugin>
            
      <plugin>
	     <groupId>org.apache.maven.plugins</groupId>
	     <artifactId>maven-war-plugin</artifactId>
	     <version>3.2.2</version>
	     <configuration>
		    <webResources>
			   <resource>							
				   <directory>${processed.files.dir}</directory>
			   </resource>
		    </webResources>
	     </configuration>
      </plugin>

The processed html file will be outputted to ${processed.files.dir}/templates/template.html and later it will be used to override the files used by war-plugin to package the application.

template.xhtml:

<!DOCTYPE html>
<html lang="en">
<body>

<!-- bundle:js #{request.contextPath}/resources/js/script-#hash#.min.js-->
<script src="#{request.contextPath}/resources/js/script1.js"></script>
<script src="#{request.contextPath}/resources/js/folder/script2.js"></script>
<!-- /bundle -->

<!-- bundle:css #{request.contextPath}/resources/css/stylesheet-#hash#.min.css-->
<link href="#{request.contextPath}/resources/css/stylesheet1.css"/>
<link href="#{request.contextPath}/resources/css/folder/stylesheet2.css"/>
<!-- /bundle -->

</body>
</html>

stylesheet1.css

.mybackground{
	background: url('../images/image1.png');
}

stylesheet2.css

.myotherbackground{
	background: url('../../images/folder/image2.png');
}

After running plugin the result outputted will look like:

<!DOCTYPE html>
<html lang="en">
<body>

<script type="text/javascript" src="#{request.contextPath}/resources/js/script-0874ac8910c7b3d2e73da106ebca7329.min.js"></script>
<link rel="stylesheet" href="#{request.contextPath}/resources/css/stylesheet-4971211a240c63874c6ae8c82bd0c88c.min.css" />

</body>
</html>

stylesheet-4971211a240c63874c6ae8c82bd0c88c.min.css

.mybackground{background: url('../images/image1.png');}.myotherbackground{background: url('../images/folder/image2.png');}

Notice the path normalization in the image source.

Optimizers

About

Maven plugin for creating bundle package of js and css files in Maven project.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 95.3%
  • Groovy 2.7%
  • HTML 1.6%
  • Other 0.4%