mirror of
https://github.com/gitpitch/gitpitch.git
synced 2024-04-18 07:30:55 +08:00
f4adfbed3e
The GitPitch server has been updated with support for GitPitch slideshow presentations powered by PITCHME.md within GitHub, GitLab and Bitbucket public repos. The git.repo.services property in application.conf can be used to register and configure custom GRS (Git Repo Services) for any GitPitch server deployment.
22 lines
501 B
Scala
22 lines
501 B
Scala
name := """server"""
|
|
version := "1.1"
|
|
organization := "com.gitpitch"
|
|
|
|
lazy val root = (project in file(".")).enablePlugins(PlayJava)
|
|
|
|
scalaVersion := "2.11.7"
|
|
|
|
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"
|
|
)
|