Skip to content

Commit

Permalink
fixed out of sync minified version of jquery.combobox.js by removing …
Browse files Browse the repository at this point in the history
…minified files for plugin javascripts from the git repository and adding them to the generation process in the pom
  • Loading branch information
sdutry committed Dec 18, 2016
1 parent d3fa6a8 commit 11c858f
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 135 deletions.
8 changes: 8 additions & 0 deletions struts2-jquery-plugin/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,11 @@ src/main/resources/template/js/base/widget.min.js
/src/main/resources/template/js/base/checkboxradio.min.js
/src/main/resources/template/js/base/form-reset-mixin.min.js
/src/main/resources/template/i18n/jquery-ui-timepicker-*.min.js

src/main/resources/template/js/base/jquery-ui-timepicker-addon.js
src/main/resources/template/js/base/jquery.ba-bbq.js
src/main/resources/template/js/base/jquery.combobox.js
src/main/resources/template/js/base/jquery.form.js
src/main/resources/template/js/base/jquery.mousewheel.js
src/main/resources/template/js/base/jquery.subscribe.js

25 changes: 25 additions & 0 deletions struts2-jquery-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,31 @@
<goal>minify</goal>
</goals>
</execution>
<execution>
<id>plugin-minify</id>
<phase>generate-resources</phase>
<configuration>
<charset>UTF-8</charset>
<jsEngine>CLOSURE</jsEngine>
<closureLanguage>ECMASCRIPT5_STRICT</closureLanguage>
<skipMerge>true</skipMerge>
<webappSourceDir>${basedir}/src/main/resources</webappSourceDir>
<webappTargetDir>${basedir}/src/main/resources</webappTargetDir>
<jsSourceDir>template/js/plugins</jsSourceDir>
<jsTargetDir>template/js/plugins</jsTargetDir>
<jsSourceFiles>
<jsSourceFile>jquery-ui-timepicker-addon.js</jsSourceFile>
<jsSourceFile>jquery.ba-bbq.js</jsSourceFile>
<jsSourceFile>jquery.combobox.js</jsSourceFile>
<jsSourceFile>jquery.form.js</jsSourceFile>
<jsSourceFile>jquery.mousewheel.js</jsSourceFile>
<jsSourceFile>jquery.subscribe.js</jsSourceFile>
</jsSourceFiles>
</configuration>
<goals>
<goal>minify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 11c858f

Please sign in to comment.