Skip to content

Commit

Permalink
Adding build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrickland committed Nov 14, 2011
1 parent 27fbe8a commit 69c6501
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions camel/build.sbt
@@ -0,0 +1,33 @@
name := "Akka-Camel Test"

version := "1.0"

organization := "rstrickland"

scalaVersion := "2.9.1"

scalaSource in Compile <<= baseDirectory(_ / "src")

scalaSource in Test <<= baseDirectory(_ / "src/test")

scalacOptions += "-deprecation"

parallelExecution in Test := true

libraryDependencies ++= Seq(
"se.scalablesolutions.akka" % "akka-actor" % "1.2",
"se.scalablesolutions.akka" % "akka-camel" % "1.2",
"org.apache.camel" % "camel" % "2.8.2",
"org.apache.camel" % "camel-jetty" % "2.8.2",
"org.apache.camel" % "camel-mina" % "2.8.2",
"org.apache.mina" % "mina-core" % "1.1.7",
"org.eclipse.jetty" % "jetty-webapp" % "8.0.0.M2" % "test",
"org.mortbay.jetty" % "servlet-api" % "3.0.20100224" % "provided"
)

resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Scala Tools Nexus Snapshots" at "http://nexus.scala-tools.org/content/repositories/snapshots/",
"Scala Tools Nexus Releases" at "http://nexus.scala-tools.org/content/repositories/releases/"
)

0 comments on commit 69c6501

Please sign in to comment.