aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2013-06-18 23:55:38 +0200
committerJakob Odersky <jodersky@gmail.com>2013-06-18 23:55:38 +0200
commit892bd6053aff21cda2fbabddb824c9710d7baafa (patch)
tree2cff8af70946110fbb7c6e3a1d695c800b434733 /project
parent98241aa830bedb006ae041dce661afd57c3d90a8 (diff)
downloadakka-serial-892bd6053aff21cda2fbabddb824c9710d7baafa.tar.gz
akka-serial-892bd6053aff21cda2fbabddb824c9710d7baafa.tar.bz2
akka-serial-892bd6053aff21cda2fbabddb824c9710d7baafa.zip
repair broken example
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala8
-rw-r--r--project/plugins.sbt4
2 files changed, 8 insertions, 4 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 73f0894..a0f0baa 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -30,10 +30,10 @@ object FlowBuild extends Build {
}
) ++ Jni.defaultSettings)
- lazy val example = Project(
- id = "flow-example",
- base = file("example"),
- settings = buildSettings ++ runSettings ++ Seq(libraryDependencies ++= Dependencies.all))
+ lazy val samples = Project(
+ id = "flow-samples",
+ base = file("samples"),
+ settings = buildSettings ++ runSettings ++ Seq(libraryDependencies ++= Dependencies.all)).dependsOn(main)
lazy val buildSettings = Defaults.defaultSettings ++ Seq(
organization := Organization,
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 6eb2159..f0483bb 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1 +1,5 @@
+resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/snapshots/"
+
+addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.2.0")
+
addSbtPlugin("com.github.jodersky" % "sbt-native" % "1.0-SNAPSHOT")