thanks for the reminder On Friday, May 17, 2013, Ulrich Stärk wrote:
> please also add a NOTICE and LICENSE file for this new module. > > Uli > > On 17.05.2013 03:02, [email protected] wrote: > > Updated Branches: > > refs/heads/master 56a114812 -> 9e76c372b > > > > > > Initial work on enabling CoffeeScript compilation > > > > > > Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo > > Commit: > http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/bd26fb5c > > Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/bd26fb5c > > Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/bd26fb5c > > > > Branch: refs/heads/master > > Commit: bd26fb5c6164e2027f8cd2bc401b883d463768c2 > > Parents: 56a1148 > > Author: Howard M. Lewis Ship <[email protected]> > > Authored: Thu May 16 17:51:29 2013 -0700 > > Committer: Howard M. Lewis Ship <[email protected]> > > Committed: Thu May 16 17:51:29 2013 -0700 > > > > ---------------------------------------------------------------------- > > build.gradle | 3 +- > > settings.gradle | 2 +- > > tapestry-wro4j/build.gradle | 13 ++ > > .../wro4j/CoffeeScriptResourceCompiler.java | 98 > +++++++++++++++ > > .../tapestry5/wro4j/modules/WRO4JModule.java | 35 +++++ > > .../src/test/groovy/t5/wro4j/pages/Index.groovy | 9 ++ > > .../src/test/java/t5/wro4j/services/AppModule.java | 29 +++++ > > .../test/resources/META-INF/modules/index.coffee | 5 + > > tapestry-wro4j/src/test/resources/log4j.properties | 12 ++ > > .../src/test/resources/t5/wro4j/pages/Index.tml | 24 ++++ > > tapestry-wro4j/src/test/webapp/WEB-INF/web.xml | 19 +++ > > 11 files changed, 247 insertions(+), 2 deletions(-) > > ---------------------------------------------------------------------- > > > > > > > http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bd26fb5c/build.gradle > > ---------------------------------------------------------------------- > > diff --git a/build.gradle b/build.gradle > > index cafec92..85bc99d 100755 > > --- a/build.gradle > > +++ b/build.gradle > > @@ -21,7 +21,8 @@ project.ext.versions = [ > > spock: "0.7-groovy-2.0", > > hibernate: "4.1.2.Final", > > groovy: "2.0.6", > > - slf4j: "1.7.2" > > + slf4j: "1.7.2", > > + wro4j: "1.6.3" > > ] > > > > // Provided so that the CI server can override the normal version > number for nightly builds. > > > > > http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bd26fb5c/settings.gradle > > ---------------------------------------------------------------------- > > diff --git a/settings.gradle b/settings.gradle > > index de2c892..4338dbc 100644 > > --- a/settings.gradle > > +++ b/settings.gradle > > @@ -3,4 +3,4 @@ include "tapestry-hibernate-core", "tapestry-hibernate", > "tapestry-jmx", "tapest > > include "tapestry-beanvalidator", "tapestry-yuicompressor", > "tapestry-jpa", "tapestry-kaptcha" > > include "tapestry-javadoc", "quickstart", "tapestry-clojure", > "--------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] <javascript:;> > For additional commands, e-mail: [email protected]<javascript:;> > > -- Howard M. Lewis Ship Creator of Apache Tapestry The source for Tapestry training, mentoring and support. Contact me to learn how I can get you up and productive in Tapestry fast! (971) 678-5210 http://howardlewisship.com
