Created
June 26, 2013 03:09
-
-
Save softprops/5864480 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/project/WebModule.scala b/project/WebModule.scala | |
index 737f2a6..3bb4c85 100644 | |
--- a/project/WebModule.scala | |
+++ b/project/WebModule.scala | |
@@ -12,11 +12,13 @@ object WebModule extends BaseModule { | |
def settings = Seq( | |
// Add your own project settings here | |
- testOptions in Test += Tests.Argument("junitxml", "console"), | |
- | |
- (resourceManaged in (Compile, CoffeeKeys.coffee)) <<= (crossTarget in Compile)(_ / "src" / "main" / "coffee") | |
- | |
- ) ++ coffeeSettings | |
+ testOptions in Test += Tests.Argument("junitxml", "console") | |
+ ) ++ coffeeSettings ++ Seq( | |
+ // where coffee is made ( show coffee::source-directory ) | |
+ //sourceDirectory in (Compile, CoffeeKeys.coffee) <<= (sourceDirectory in Compile)(_ / "main" / "coffee") | |
+ // where javascript goes out ( show coffee::resource-managed ) | |
+ // resourceManaged in (Compile, CoffeeKeys.coffee) <<= (crossTarget in Compile)(_ / "where_ever") | |
+ ) | |
val libraries = Seq( | |
Libraries.WebJars.angularJs, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment