mirror of
https://github.com/gitpitch/gitpitch.git
synced 2024-04-18 07:30:55 +08:00
70c62f63d7
- 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
22 lines
521 B
Scala
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"
|
|
)
|