Created
August 14, 2015 20:14
-
-
Save sasajib/3e5b1de4611e68ad27c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := """pavilion-play-v0.2""" | |
version := "1.0-SNAPSHOT" | |
lazy val root = (project in file(".")).enablePlugins(PlayJava) | |
//Admin panel start | |
lazy val gulpDirectory = baseDirectory{ _ / "pavilion-panel"} | |
includeFilter in (Assets, unmanagedResources) := "dist" | |
unmanagedResourceDirectories in Assets <+= gulpDirectory | |
//Admin panel finish | |
scalaVersion := "2.11.6" | |
libraryDependencies ++= Seq( | |
javaJdbc, | |
cache, | |
javaWs, | |
filters, | |
"mysql" % "mysql-connector-java" % "5.1.18", | |
"com.webdev.common" % "common-api" % "1.0.2-SNAPSHOT", | |
"com.webdev.pavilion.service" % "pavilion-service" % "1.0-SNAPSHOT", | |
"com.webdev.pavilion.service.pressbox" % "pressbox-service" % "1.0-SNAPSHOT", | |
"com.webdev.pavilion.service.user" % "user-service" % "1.0-SNAPSHOT", | |
"com.webdev.image" % "image" % "1.0-SNAPSHOT", | |
"commons-io" % "commons-io" % "2.4", | |
"com.googlecode.htmlcompressor" % "htmlcompressor" % "1.5.2", | |
"org.brickred" % "socialauth" % "4.8", | |
"com.typesafe.play" %% "play-mailer" % "3.0.1" | |
) | |
resolvers ++= Seq( | |
"Pavilion" at "http://pavilion.com.bd:8081/artifactory/libs-snapshot-local/", | |
"google-sedis-fix" at "http://pk11-scratch.googlecode.com/svn/trunk", | |
"jitpack.io" at "https://jitpack.io", | |
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases", | |
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots", | |
"play-easymail (release)" at "http://joscha.github.io/play-easymail/repo/releases/", | |
"play-easymail (snapshot)" at "http://joscha.github.io/play-easymail/repo/snapshots/" | |
) | |
// Play provides two styles of routers, one expects its actions to be injected, the | |
// other, legacy style, accesses its actions statically. | |
routesGenerator := InjectedRoutesGenerator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment