Advertisement
Guest User

Untitled

a guest
Feb 24th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.86 KB | None | 0 0
  1. organization := "com.aurelpaulovic"
  2.  
  3. name := "ecdstm"
  4.  
  5. version := "0.1"
  6.  
  7. scalaVersion := "2.11.5"
  8.  
  9. scalacOptions ++= Seq( "-feature", "-deprecation", "-language:implicitConversions" )
  10.  
  11. resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
  12.  
  13. libraryDependencies ++= Seq(
  14.     "com.typesafe.akka" %% "akka-actor" % "2.3.9",
  15.     "com.typesafe.akka" %% "akka-cluster" % "2.3.9",
  16.     "com.typesafe.akka" %% "akka-contrib" % "2.3.9",
  17.     "com.typesafe.akka" % "akka-slf4j_2.11" % "2.3.9",
  18.     "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
  19.     "ch.qos.logback" % "logback-classic" % "1.1.2"
  20. )
  21.  
  22. incOptions := incOptions.value.withNameHashing(true)
  23.  
  24. lazy val crdt = RootProject(file("../crdt"))
  25.  
  26. lazy val ecdstm = Project(id = "ecdstm", base = file(".")).dependsOn(crdt)
  27.  
  28. EclipseKeys.eclipseOutput := Some("target/eclipse")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement