You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/06/18 03:30:47 UTC

[1/4] git commit: Add ElementWrapper.offset()

Updated Branches:
  refs/heads/master f6d06a3bb -> 5e22b236f


Add ElementWrapper.offset()


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/d5e74693
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/d5e74693
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/d5e74693

Branch: refs/heads/master
Commit: d5e74693e6a85c7d1ef9d2ab03203e70525d2477
Parents: f6d06a3
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Jun 14 17:30:08 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Jun 14 17:30:08 2013 -0700

----------------------------------------------------------------------
 .../coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee | 4 ++++
 .../org/apache/tapestry5/t5-core-dom-prototype.coffee           | 5 +++++
 2 files changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/d5e74693/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee
index 11918d9..b1ddbfc 100644
--- a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee
+++ b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee
@@ -149,6 +149,10 @@ define ["underscore", "./utils", "jquery", "./events"], (_, utils, $, events) ->
 
       return this
 
+    # Returns the offset of the object relative to the document. The returned object has
+    # keys `top`' and `left`'.
+    offset: ->
+      @$.offset()
 
     # Removes the wrapped element from the DOM.  It can later be re-attached.
     remove: ->

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/d5e74693/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-prototype.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-prototype.coffee b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-prototype.coffee
index e4278e2..db88bbb 100644
--- a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-prototype.coffee
+++ b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-prototype.coffee
@@ -192,6 +192,11 @@ define ["underscore", "./utils", "./events", "prototype"], (_, utils, events) ->
 
       return this
 
+    # Returns the offset of the object relative to the document. The returned object has
+    # keys `top`' and `left`'.
+    offset: ->
+      @element.viewportOffset()
+
     # Removes the wrapped element from the DOM.  It can later be re-attached.
     remove: ->
       @element.remove()


[2/4] git commit: Move the compiled test CoffeeScript under src/test/generated

Posted by hl...@apache.org.
Move the compiled test CoffeeScript under src/test/generated


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/8f1865f6
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/8f1865f6
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/8f1865f6

Branch: refs/heads/master
Commit: 8f1865f625eee3d2f8766dd098ba641373cae84e
Parents: d5e7469
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 17 17:38:08 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 17 17:40:19 2013 -0700

----------------------------------------------------------------------
 tapestry-core/.gitignore                |  1 +
 tapestry-core/build.gradle              | 11 ++++++-----
 tapestry-core/compile-test-coffeescript |  2 +-
 3 files changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8f1865f6/tapestry-core/.gitignore
----------------------------------------------------------------------
diff --git a/tapestry-core/.gitignore b/tapestry-core/.gitignore
index b5e996d..f739972 100644
--- a/tapestry-core/.gitignore
+++ b/tapestry-core/.gitignore
@@ -1,3 +1,4 @@
 docs
 /.externalToolBuilders
 src/main/generated
+src/test/generated

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8f1865f6/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index a26c55f..d24d50f 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -6,8 +6,9 @@ description = "Central module for Tapestry, containing all core services and com
 
 project.ext {
     antlrSource = "src/main/antlr"
-    generatedDir = "src/main/generated"
-    antlrOutput = "$generatedDir/antlr"
+    mainGeneratedDir = "src/main/generated"
+    testGeneratedDir = "src/test/generated"
+    antlrOutput = "$mainGeneratedDir/antlr"
 }
 
 configurations {
@@ -53,12 +54,12 @@ task generateGrammarSource(type: JavaExec) {
 }
 
 task compileCoffeeScript(type: CompileCoffeeScript) {
-    outputDir "${generatedDir}/compiled-coffeescript"
+    outputDir "${mainGeneratedDir}/compiled-coffeescript"
 }
 
 task compileTestCoffeeScript(type: CompileCoffeeScript) {
     srcDir "src/test/coffeescript"
-    outputDir "${generatedDir}/compiled-test-coffeescript"
+    outputDir "${testGeneratedDir}/compiled-coffeescript"
 }
 
 
@@ -72,7 +73,7 @@ sourceSets {
     }
 }
 
-clean.delete generatedDir
+clean.delete mainGeneratedDir, testGeneratedDir
 
 compileJava {
     dependsOn generateGrammarSource

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8f1865f6/tapestry-core/compile-test-coffeescript
----------------------------------------------------------------------
diff --git a/tapestry-core/compile-test-coffeescript b/tapestry-core/compile-test-coffeescript
index 9f6a290..c313926 100755
--- a/tapestry-core/compile-test-coffeescript
+++ b/tapestry-core/compile-test-coffeescript
@@ -6,6 +6,6 @@
 # Doe NOT compile the test scripts.
 
 inputDir=src/test/coffeescript
-outputDir=src/main/generated/compiled-test-coffeescript
+outputDir=src/test/generated/compiled-coffeescript
 
 coffee --watch --bare --output $outputDir $inputDir
\ No newline at end of file


[4/4] git commit: Improve exclusions needed to generate Maven POMs correctly

Posted by hl...@apache.org.
Improve exclusions needed to generate Maven POMs correctly


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/5e22b236
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/5e22b236
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/5e22b236

Branch: refs/heads/master
Commit: 5e22b236fcf6d1aa460f02a883bcdd57e0f3aa7e
Parents: 0b223bc
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 17 18:30:40 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 17 18:30:40 2013 -0700

----------------------------------------------------------------------
 tapestry-core/build.gradle  |  4 +++-
 tapestry-wro4j/build.gradle | 15 ++++++++++++---
 2 files changed, 15 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/5e22b236/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index d24d50f..22e1cea 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -27,7 +27,9 @@ dependencies {
     compile "commons-codec:commons-codec:1.5"
 
     // Transitive will bring in the unwanted string template library as well
-    compile "org.antlr:antlr-runtime:3.3", { transitive = false }
+    compile "org.antlr:antlr-runtime:3.3", {
+        exclude group:"org.antlr", module:"stringtemplate"
+    }
 
     // Antlr3 tool path used with the antlr3 task
     antlr3 "org.antlr:antlr:3.3"

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/5e22b236/tapestry-wro4j/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-wro4j/build.gradle b/tapestry-wro4j/build.gradle
index 02b1e46..b4a770b 100644
--- a/tapestry-wro4j/build.gradle
+++ b/tapestry-wro4j/build.gradle
@@ -3,10 +3,19 @@ description = "Integration with WRO4J to perform runtime CoffeeScript compilatio
 dependencies {
     compile project(":tapestry-core")
     compile "ro.isdc.wro4j:wro4j-extensions:${versions.wro4j}", {
-        exclude group: "org.codehaus.gmaven.runtime"
-        exclude group: "com.github.lltyk"
+        exclude group: "org.codehaus.gmaven.runtime", module: "gmaven-runtime-1.7"
+        exclude group: "com.github.lltyk", module: "dojo-shrinksafe"
+        exclude group: "org.springframework", module: "spring-web"
+        exclude group: "me.n4u.sass", module: "sass-gems"
+        exclude group: "nz.co.edmi", module: "bourbon-gem-jar"
+        exclude group: "org.webjars", module: "jshint"
+        exclude group: "org.webjars", module: "less"
+        exclude group: "org.webjars", module: "emberjs"
+        exclude group: "org.webjars", module: "handlebars"
+        exclude group: "org.webjars", module: "jslint"
+        exclude group: "org.webjars", module: "json2"
         // Due to conflict:
-        exclude group: "org.slf4j"
+        exclude group: "org.slf4j", module: "slf4j-api"
     }
 
     testCompile project(":tapestry-runner")


[2/4] git commit: Move the compiled test CoffeeScript under src/test/generated

Posted by hl...@apache.org.
Move the compiled test CoffeeScript under src/test/generated


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/8f1865f6
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/8f1865f6
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/8f1865f6

Branch: refs/heads/master
Commit: 8f1865f625eee3d2f8766dd098ba641373cae84e
Parents: d5e7469
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 17 17:38:08 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 17 17:40:19 2013 -0700

----------------------------------------------------------------------
 tapestry-core/.gitignore                |  1 +
 tapestry-core/build.gradle              | 11 ++++++-----
 tapestry-core/compile-test-coffeescript |  2 +-
 3 files changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8f1865f6/tapestry-core/.gitignore
----------------------------------------------------------------------
diff --git a/tapestry-core/.gitignore b/tapestry-core/.gitignore
index b5e996d..f739972 100644
--- a/tapestry-core/.gitignore
+++ b/tapestry-core/.gitignore
@@ -1,3 +1,4 @@
 docs
 /.externalToolBuilders
 src/main/generated
+src/test/generated

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8f1865f6/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index a26c55f..d24d50f 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -6,8 +6,9 @@ description = "Central module for Tapestry, containing all core services and com
 
 project.ext {
     antlrSource = "src/main/antlr"
-    generatedDir = "src/main/generated"
-    antlrOutput = "$generatedDir/antlr"
+    mainGeneratedDir = "src/main/generated"
+    testGeneratedDir = "src/test/generated"
+    antlrOutput = "$mainGeneratedDir/antlr"
 }
 
 configurations {
@@ -53,12 +54,12 @@ task generateGrammarSource(type: JavaExec) {
 }
 
 task compileCoffeeScript(type: CompileCoffeeScript) {
-    outputDir "${generatedDir}/compiled-coffeescript"
+    outputDir "${mainGeneratedDir}/compiled-coffeescript"
 }
 
 task compileTestCoffeeScript(type: CompileCoffeeScript) {
     srcDir "src/test/coffeescript"
-    outputDir "${generatedDir}/compiled-test-coffeescript"
+    outputDir "${testGeneratedDir}/compiled-coffeescript"
 }
 
 
@@ -72,7 +73,7 @@ sourceSets {
     }
 }
 
-clean.delete generatedDir
+clean.delete mainGeneratedDir, testGeneratedDir
 
 compileJava {
     dependsOn generateGrammarSource

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8f1865f6/tapestry-core/compile-test-coffeescript
----------------------------------------------------------------------
diff --git a/tapestry-core/compile-test-coffeescript b/tapestry-core/compile-test-coffeescript
index 9f6a290..c313926 100755
--- a/tapestry-core/compile-test-coffeescript
+++ b/tapestry-core/compile-test-coffeescript
@@ -6,6 +6,6 @@
 # Doe NOT compile the test scripts.
 
 inputDir=src/test/coffeescript
-outputDir=src/main/generated/compiled-test-coffeescript
+outputDir=src/test/generated/compiled-coffeescript
 
 coffee --watch --bare --output $outputDir $inputDir
\ No newline at end of file


[4/4] git commit: Improve exclusions needed to generate Maven POMs correctly

Posted by hl...@apache.org.
Improve exclusions needed to generate Maven POMs correctly


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/5e22b236
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/5e22b236
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/5e22b236

Branch: refs/heads/master
Commit: 5e22b236fcf6d1aa460f02a883bcdd57e0f3aa7e
Parents: 0b223bc
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 17 18:30:40 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 17 18:30:40 2013 -0700

----------------------------------------------------------------------
 tapestry-core/build.gradle  |  4 +++-
 tapestry-wro4j/build.gradle | 15 ++++++++++++---
 2 files changed, 15 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/5e22b236/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index d24d50f..22e1cea 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -27,7 +27,9 @@ dependencies {
     compile "commons-codec:commons-codec:1.5"
 
     // Transitive will bring in the unwanted string template library as well
-    compile "org.antlr:antlr-runtime:3.3", { transitive = false }
+    compile "org.antlr:antlr-runtime:3.3", {
+        exclude group:"org.antlr", module:"stringtemplate"
+    }
 
     // Antlr3 tool path used with the antlr3 task
     antlr3 "org.antlr:antlr:3.3"

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/5e22b236/tapestry-wro4j/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-wro4j/build.gradle b/tapestry-wro4j/build.gradle
index 02b1e46..b4a770b 100644
--- a/tapestry-wro4j/build.gradle
+++ b/tapestry-wro4j/build.gradle
@@ -3,10 +3,19 @@ description = "Integration with WRO4J to perform runtime CoffeeScript compilatio
 dependencies {
     compile project(":tapestry-core")
     compile "ro.isdc.wro4j:wro4j-extensions:${versions.wro4j}", {
-        exclude group: "org.codehaus.gmaven.runtime"
-        exclude group: "com.github.lltyk"
+        exclude group: "org.codehaus.gmaven.runtime", module: "gmaven-runtime-1.7"
+        exclude group: "com.github.lltyk", module: "dojo-shrinksafe"
+        exclude group: "org.springframework", module: "spring-web"
+        exclude group: "me.n4u.sass", module: "sass-gems"
+        exclude group: "nz.co.edmi", module: "bourbon-gem-jar"
+        exclude group: "org.webjars", module: "jshint"
+        exclude group: "org.webjars", module: "less"
+        exclude group: "org.webjars", module: "emberjs"
+        exclude group: "org.webjars", module: "handlebars"
+        exclude group: "org.webjars", module: "jslint"
+        exclude group: "org.webjars", module: "json2"
         // Due to conflict:
-        exclude group: "org.slf4j"
+        exclude group: "org.slf4j", module: "slf4j-api"
     }
 
     testCompile project(":tapestry-runner")


[3/4] git commit: Upgrade dependency to WRO4J 1.7.0

Posted by hl...@apache.org.
Upgrade dependency to WRO4J 1.7.0


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/0b223bcf
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/0b223bcf
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/0b223bcf

Branch: refs/heads/master
Commit: 0b223bcf4f6eff5935a768495ad21f7164ed3fe0
Parents: 8f1865f
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 17 17:57:25 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 17 17:57:25 2013 -0700

----------------------------------------------------------------------
 build.gradle                                                | 2 +-
 buildSrc/build.gradle                                       | 2 +-
 buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0b223bcf/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 151e1b7..59c349c 100755
--- a/build.gradle
+++ b/build.gradle
@@ -18,7 +18,7 @@ project.ext.versions = [
     hibernate: "4.1.2.Final",
     groovy: "2.0.6",
     slf4j: "1.7.2",
-    wro4j: "1.6.3",
+    wro4j: "1.7.0",
     geb: "0.9.0",
     selenium: "2.33.0"
 ]

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0b223bcf/buildSrc/build.gradle
----------------------------------------------------------------------
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index c02932c..fb868ad 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -6,6 +6,6 @@ repositories {
 
 
 dependencies {
-    compile "ro.isdc.wro4j:wro4j-extensions:1.5.0"
+    compile "ro.isdc.wro4j:wro4j-extensions:1.7.0"
     gradleApi()
 }

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0b223bcf/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
----------------------------------------------------------------------
diff --git a/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy b/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
index 628437a..f125a13 100644
--- a/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
+++ b/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
@@ -6,7 +6,7 @@ import ro.isdc.wro.extensions.processor.support.coffeescript.*
 import org.gradle.api.*
 import org.gradle.api.tasks.*
 
-class CustomizedProcessor extends CoffeeScriptProcessor {
+class CustomizedProcessor extends RhinoCoffeeScriptProcessor {
 
     protected CoffeeScript newCoffeeScript() {
         CoffeeScript engine = new CoffeeScript()


[3/4] git commit: Upgrade dependency to WRO4J 1.7.0

Posted by hl...@apache.org.
Upgrade dependency to WRO4J 1.7.0


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/0b223bcf
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/0b223bcf
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/0b223bcf

Branch: refs/heads/master
Commit: 0b223bcf4f6eff5935a768495ad21f7164ed3fe0
Parents: 8f1865f
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Jun 17 17:57:25 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Jun 17 17:57:25 2013 -0700

----------------------------------------------------------------------
 build.gradle                                                | 2 +-
 buildSrc/build.gradle                                       | 2 +-
 buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0b223bcf/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 151e1b7..59c349c 100755
--- a/build.gradle
+++ b/build.gradle
@@ -18,7 +18,7 @@ project.ext.versions = [
     hibernate: "4.1.2.Final",
     groovy: "2.0.6",
     slf4j: "1.7.2",
-    wro4j: "1.6.3",
+    wro4j: "1.7.0",
     geb: "0.9.0",
     selenium: "2.33.0"
 ]

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0b223bcf/buildSrc/build.gradle
----------------------------------------------------------------------
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index c02932c..fb868ad 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -6,6 +6,6 @@ repositories {
 
 
 dependencies {
-    compile "ro.isdc.wro4j:wro4j-extensions:1.5.0"
+    compile "ro.isdc.wro4j:wro4j-extensions:1.7.0"
     gradleApi()
 }

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/0b223bcf/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
----------------------------------------------------------------------
diff --git a/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy b/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
index 628437a..f125a13 100644
--- a/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
+++ b/buildSrc/src/main/groovy/t5build/CompileCoffeeScript.groovy
@@ -6,7 +6,7 @@ import ro.isdc.wro.extensions.processor.support.coffeescript.*
 import org.gradle.api.*
 import org.gradle.api.tasks.*
 
-class CustomizedProcessor extends CoffeeScriptProcessor {
+class CustomizedProcessor extends RhinoCoffeeScriptProcessor {
 
     protected CoffeeScript newCoffeeScript() {
         CoffeeScript engine = new CoffeeScript()