aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/simple/build/build.scala9
-rw-r--r--test/test.scala6
2 files changed, 13 insertions, 2 deletions
diff --git a/test/simple/build/build.scala b/test/simple/build/build.scala
new file mode 100644
index 0000000..3f7633b
--- /dev/null
+++ b/test/simple/build/build.scala
@@ -0,0 +1,9 @@
+import cbt._
+import scala.collection.immutable.Seq
+import java.io.File
+class Build(context: cbt.Context) extends BasicBuild(context){
+ override def dependencies = Seq(
+ ScalaDependency("com.typesafe.play", "play-json", "2.4.4"),
+ JavaDependency("joda-time", "joda-time", "2.9.2")
+ ) ++ super.dependencies
+}
diff --git a/test/test.scala b/test/test.scala
index 7c805c9..47bd28b 100644
--- a/test/test.scala
+++ b/test/test.scala
@@ -67,13 +67,15 @@ object Main{
compile("nothing")
usage("multi-build")
compile("multi-build")
+ usage("simple")
+ compile("simple")
{
val noContext = Context(cbtHome ++ "/test/nothing", Seq(), logger)
val b = new Build(noContext){
override def dependencies = Seq(
- MavenDependency("net.incongru.watchservice","barbary-watchservice","1.0")(logger),
- MavenDependency("net.incongru.watchservice","barbary-watchservice","1.0")(logger)
+ JavaDependency("net.incongru.watchservice","barbary-watchservice","1.0"),
+ JavaDependency("net.incongru.watchservice","barbary-watchservice","1.0")
)
}
val cp = b.classpath