bigbluebutton-Github/akka-bbb-apps/build.sbt

100 lines
3.1 KiB
Plaintext
Raw Normal View History

2015-06-09 05:05:05 +08:00
enablePlugins(JavaServerAppPackaging)
2015-05-12 06:25:11 +08:00
2015-06-09 04:32:03 +08:00
name := "bbb-apps-akka"
2015-05-12 06:25:11 +08:00
organization := "org.bigbluebutton"
2015-06-09 05:50:30 +08:00
version := "0.0.1"
2015-05-12 06:25:11 +08:00
2015-05-14 04:23:49 +08:00
scalaVersion := "2.11.6"
2015-05-12 06:25:11 +08:00
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-dead-code",
"-language:_",
2015-05-14 04:23:49 +08:00
"-target:jvm-1.7",
2015-05-12 06:25:11 +08:00
"-encoding", "UTF-8"
)
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io/",
2015-05-14 04:23:49 +08:00
"rediscala" at "http://dl.bintray.com/etaty/maven",
"blindside-repos" at "http://blindside.googlecode.com/svn/repository/"
2015-05-12 06:25:11 +08:00
)
publishTo := Some(Resolver.file("file", new File(Path.userHome.absolutePath+"/dev/repo/maven-repo/releases" )) )
// We want to have our jar files in lib_managed dir.
// This way we'll have the right path when we import
// into eclipse.
retrieveManaged := true
testOptions in Test += Tests.Argument(TestFrameworks.Specs2, "html", "console", "junitxml")
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-h", "target/scalatest-reports")
libraryDependencies ++= {
2015-06-09 22:31:08 +08:00
val akkaVersion = "2.3.11"
2015-05-12 06:25:11 +08:00
Seq(
2015-05-14 04:23:49 +08:00
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
2015-06-05 22:54:52 +08:00
"ch.qos.logback" % "logback-classic" % "1.0.13" % "runtime",
2015-05-14 04:23:49 +08:00
"org.pegdown" % "pegdown" % "1.4.0",
"junit" % "junit" % "4.11",
"com.etaty.rediscala" %% "rediscala" % "1.4.0",
"commons-codec" % "commons-codec" % "1.8",
"joda-time" % "joda-time" % "2.3",
"com.google.code.gson" % "gson" % "1.7.1",
"redis.clients" % "jedis" % "2.1.0",
2015-06-10 23:50:06 +08:00
"org.apache.commons" % "commons-lang3" % "3.2",
2015-07-08 05:36:01 +08:00
"org.bigbluebutton" % "bbb-common-message" % "0.0.8"
2015-05-12 06:25:11 +08:00
)}
seq(Revolver.settings: _*)
2015-05-14 04:23:49 +08:00
scalariformSettings
2015-06-09 04:32:03 +08:00
//-----------
// Packaging
2015-06-09 05:50:30 +08:00
//
// Reference:
// https://github.com/muuki88/sbt-native-packager-examples/tree/master/akka-server-app
// http://www.scala-sbt.org/sbt-native-packager/index.html
2015-06-09 04:32:03 +08:00
//-----------
mainClass := Some("org.bigbluebutton.Boot")
2015-06-09 05:05:05 +08:00
maintainer in Linux := "Richard Alam <ritzalam@gmail.com>"
2015-06-11 04:45:57 +08:00
2015-06-09 05:05:05 +08:00
packageSummary in Linux := "BigBlueButton Apps (Akka)"
2015-06-11 04:45:57 +08:00
2015-06-09 04:32:03 +08:00
packageDescription := """BigBlueButton Core Apps in Akka."""
2015-06-09 05:50:30 +08:00
val user = "bigbluebutton"
2015-06-11 04:45:57 +08:00
2015-06-09 05:50:30 +08:00
val group = "bigbluebutton"
// user which will execute the application
daemonUser in Linux := user
2015-06-11 04:45:57 +08:00
2015-06-09 05:50:30 +08:00
// group which will execute the application
daemonGroup in Linux := group
mappings in Universal <+= (packageBin in Compile, sourceDirectory ) map { (_, src) =>
// Move the application.conf so the user can override settings here
val appConf = src / "main" / "resources" / "application.conf"
appConf -> "conf/application.conf"
}
2015-06-09 05:05:05 +08:00
mappings in Universal <+= (packageBin in Compile, sourceDirectory ) map { (_, src) =>
2015-06-09 05:50:30 +08:00
// Move logback.xml so the user can override settings here
val logConf = src / "main" / "resources" / "logback.xml"
logConf -> "conf/logback.xml"
2015-06-09 05:05:05 +08:00
}
2015-06-09 04:32:03 +08:00
debianPackageDependencies in Debian ++= Seq("java7-runtime-headless", "bash")