Author: hlship
Date: Thu Mar 31 23:15:05 2011
New Revision: 1087479
URL: http://svn.apache.org/viewvc?rev=1087479&view=rev
Log:
TAP5-73: Add empty tapestry-yuicompressor module
Added:
tapestry/tapestry5/trunk/tapestry-yuicompressor/
tapestry/tapestry5/trunk/tapestry-yuicompressor/build.gradle
Modified:
tapestry/tapestry5/trunk/settings.gradle
Modified: tapestry/tapestry5/trunk/settings.gradle
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/settings.gradle?rev=1087479&r1=1087478&r2=1087479&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/settings.gradle (original)
+++ tapestry/tapestry5/trunk/settings.gradle Thu Mar 31 23:15:05 2011
@@ -1,5 +1,5 @@
include "plastic", "tapestry-annotations", "tapestry-test", "tapestry-func",
"tapestry-ioc", "tapestry-json", "tapestry-core"
include "tapestry-hibernate-core", "tapestry-hibernate", "tapestry-jmx",
"tapestry-upload", "tapestry-spring"
-include "tapestry-beanvalidator"
+include "tapestry-beanvalidator", "tapestry-yuicompressor"
// TODO (LATER): tapestry-component-report, quickstart
Added: tapestry/tapestry5/trunk/tapestry-yuicompressor/build.gradle
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-yuicompressor/build.gradle?rev=1087479&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-yuicompressor/build.gradle (added)
+++ tapestry/tapestry5/trunk/tapestry-yuicompressor/build.gradle Thu Mar 31
23:15:05 2011
@@ -0,0 +1,13 @@
+description = "Integrates YUI Compressor to minimize JavaScript and CSS
resources"
+
+dependencies {
+ compile project(':tapestry-core')
+
+ testCompile project(':tapestry-test')
+}
+
+jar {
+ manifest {
+ attributes 'Tapestry-Module-Classes':
'org.apache.tapestry5.yuicompressor.YuiCompressorModule'
+ }
+}
\ No newline at end of file