gitpitch/build.sbt
David Russell 70c62f63d7 GitPitch 2.0 feature branch merge.
- 2.0 Menus: Home, Git, Themes, TOC
- 2.0 TOC with @title markdown shortcut
- 2.0 Notifications Bar
- 2.0 Introduction Presentation
- Refactored CSS style dependencies as frags
- Refactored Code and GIST services
- GIST support extended across all GRS
- Updated OfflineService implementation
- Updated GRS matching by TYPE
- New 404 page-not-found page
2017-10-03 15:35:14 +07:00

22 lines
521 B
Scala

name := """server"""
version := "2.0"
organization := "com.gitpitch"
lazy val root = (project in file(".")).enablePlugins(PlayJava, LauncherJarPlugin)
scalaVersion := "2.11.11"
libraryDependencies ++= Seq(
cache,
javaWs,
filters
)
libraryDependencies ++= Seq(
"com.typesafe.netty" % "netty-reactive-streams-http" % "1.0.6",
"com.google.guava" % "guava" % "19.0",
"com.google.inject.extensions" % "guice-assistedinject" % "4.0",
"org.yaml" % "snakeyaml" % "1.17",
"commons-io" % "commons-io" % "2.5"
)