- start implementing recording metadata reader
This commit is contained in:
parent
6f6ca61077
commit
80a0c9f386
@ -4,6 +4,18 @@ organization := "org.bigbluebutton"
|
||||
|
||||
version := "0.0.1-SNAPSHOT"
|
||||
|
||||
scalaVersion := "2.11.7"
|
||||
|
||||
scalacOptions ++= Seq(
|
||||
"-unchecked",
|
||||
"-deprecation",
|
||||
"-Xlint",
|
||||
"-Ywarn-dead-code",
|
||||
"-language:_",
|
||||
"-target:jvm-1.8",
|
||||
"-encoding", "UTF-8"
|
||||
)
|
||||
|
||||
// We want to have our jar files in lib_managed dir.
|
||||
// This way we'll have the right path when we import
|
||||
// into eclipse.
|
||||
@ -13,8 +25,15 @@ testOptions in Test += Tests.Argument(TestFrameworks.Specs2, "html", "console",
|
||||
|
||||
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-h", "target/scalatest-reports")
|
||||
|
||||
val scalaV = "2.11.7"
|
||||
|
||||
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaV
|
||||
libraryDependencies += "org.scala-lang" % "scala-library" % scalaV
|
||||
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaV
|
||||
|
||||
libraryDependencies += "commons-lang" % "commons-lang" % "2.5"
|
||||
libraryDependencies += "org.freemarker" % "freemarker" % "2.3.23"
|
||||
libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.6.3"
|
||||
|
||||
libraryDependencies += "org.pegdown" % "pegdown" % "1.4.0" % "test"
|
||||
libraryDependencies += "junit" % "junit" % "4.12" % "test"
|
||||
|
@ -4,5 +4,6 @@ addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.2.0")
|
||||
|
||||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
|
||||
|
||||
addSbtPlugin("com.artima.supersafe" % "sbtplugin" % "1.1.0")
|
||||
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
package org.bigbluebutton.api.domain;
|
||||
|
||||
/**
|
||||
* Created by ralam on 3/10/2017.
|
||||
*/
|
||||
public class RecordingMetadata {
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package org.bigbluebutton.api.domain
|
||||
|
||||
/**
|
||||
* Created by ralam on 3/10/2017.
|
||||
*/
|
||||
class RecordingMetadataMeetingMeta {
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package org.bigbluebutton.api.domain;
|
||||
|
||||
/**
|
||||
* Created by ralam on 3/10/2017.
|
||||
*/
|
||||
public class RecordingMetadataPlayback {
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package org.bigbluebutton.api.util;
|
||||
|
||||
/**
|
||||
* Created by ralam on 3/10/2017.
|
||||
*/
|
||||
public class RecordingMetadataReaderHelper {
|
||||
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package org.bigbluebutton.api.util
|
||||
|
||||
/**
|
||||
* Created by ralam on 3/10/2017.
|
||||
*/
|
||||
class RecordingMetadataReaderHelperTest extends UnitSpec {
|
||||
|
||||
it should "find template" in {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user