Further work on making JMustache work in GWT.

I've ironed out most of the kinks, but the GWT unit test still fails because
we're forced to do some sneaky things with java.io.Reader/Writer. I think it
will all work when compiled to JavaScript, so I need to check it in a real
project.
This commit is contained in:
Michael Bayne
2011-10-29 15:31:27 -07:00
parent f9319ce911
commit 407d999836
9 changed files with 143 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ libraryDependencies ++= Seq(
)
// filter the super-source directory from the build
unmanagedSources in Compile ~= (_.filterNot(_.getPath.indexOf("com/samskivert/mustache/gwt") != -1))
unmanagedSources in Compile ~= (_.filterNot(_.getPath.indexOf("com/samskivert/gwt") != -1))
// add our sources to the main jar file (including super-sources)
unmanagedResourceDirectories in Compile <+= baseDirectory / "src/main/java"