diff --git a/akka-bbb-fsesl/build.sbt b/akka-bbb-fsesl/build.sbt index 33c7c9f5ae54e80e873c8ec89063367f89d68283..147c7583815c87b19efb50eaeb7bb9d2c2601275 100755 --- a/akka-bbb-fsesl/build.sbt +++ b/akka-bbb-fsesl/build.sbt @@ -49,13 +49,11 @@ libraryDependencies ++= { "joda-time" % "joda-time" % "2.3", "com.google.code.gson" % "gson" % "1.7.1", "redis.clients" % "jedis" % "2.1.0", - "org.jboss.netty" % "netty" % "3.2.1.Final", "org.apache.commons" % "commons-lang3" % "3.2", - "org.bigbluebutton" % "bbb-common-message" % "0.0.3" + "org.bigbluebutton" % "bbb-common-message" % "0.0.3", + "org.bigbluebutton" % "bbb-fsesl-client" % "0.0.2" )} -libraryDependencies += "org.freeswitch" % "fs-esl-client" % "0.8.2" from "http://blindside.googlecode.com/svn/repository/org/freeswitch/fs-esl-client/0.8.2/fs-esl-client-0.8.2.jar" - seq(Revolver.settings: _*) scalariformSettings @@ -70,14 +68,18 @@ scalariformSettings mainClass := Some("org.bigbluebutton.Boot") maintainer in Linux := "Richard Alam <ritzalam@gmail.com>" + packageSummary in Linux := "BigBlueButton FS-ESL (Akka)" + packageDescription := """BigBlueButton FreeSWITCH ESL in Akka.""" val user = "bigbluebutton" + val group = "bigbluebutton" // user which will execute the application daemonUser in Linux := user + // group which will execute the application daemonGroup in Linux := group diff --git a/bbb-fsesl-client/build.sbt b/bbb-fsesl-client/build.sbt index f2f612ffc7e4bf9d376488dbb4220d67565055a4..eb9f166450bfccabe95387d183c6caaaec100ca6 100755 --- a/bbb-fsesl-client/build.sbt +++ b/bbb-fsesl-client/build.sbt @@ -2,9 +2,11 @@ name := "bbb-fsesl-client" +description := "BigBlueButton custom FS-ESL client built on top of FS-ESL Java library." + organization := "org.bigbluebutton" -version := "0.0.1-SNAPSHOT" +version := "0.0.2" // We want to have our jar files in lib_managed dir. // This way we'll have the right path when we import @@ -64,9 +66,6 @@ publishArtifact in Test := false pomIncludeRepository := { _ => false } pomExtra := ( - <description> - BigBlueButton custom FS-ESL client built on top of FS-ESL Java library. - </description> <scm> <url>git@github.com:bigbluebutton/bigbluebutton.git</url> <connection>scm:git:git@github.com:bigbluebutton/bigbluebutton.git</connection>