Skip to content

Instantly share code, notes, and snippets.

@fayimora
Created September 9, 2015 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fayimora/159707d51d9cc3278fae to your computer and use it in GitHub Desktop.
Save fayimora/159707d51d9cc3278fae to your computer and use it in GitHub Desktop.
name := "Service"
organization := "aaa"
version := "0.0.1"
scalaVersion := "2.11.7"
fork in run := true
libraryDependencies ++= Seq(
"com.twitter.finatra" %% "finatra-http" % "2.0.0.RC1",
"com.twitter.finatra" %% "finatra-httpclient" % "2.0.0.RC1",
"com.twitter.finatra" %% "finatra-slf4j" % "2.0.0.RC1",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.firebase" % "firebase-client-jvm" % "2.3.1",
"org.postgresql" % "postgresql" % "9.4-1201-jdbc41",
"com.twitter" %% "bijection-util" % "0.8.1",
"org.scalikejdbc" %% "scalikejdbc" % "2.2.8",
"com.twitter" %% "bijection-util" % "0.8.1",
"com.twitter.finatra" %% "finatra-http" % "2.0.0.RC1" % "test",
"com.twitter.inject" %% "inject-server" % "2.0.0.RC1" % "test",
"com.twitter.inject" %% "inject-app" % "2.0.0.RC1" % "test",
"com.twitter.inject" %% "inject-core" % "2.0.0.RC1" % "test",
"com.twitter.inject" %% "inject-modules" % "2.0.0.RC1" % "test",
"com.twitter.finatra" %% "finatra-http" % "2.0.0.RC1" % "test" classifier "tests",
"com.twitter.inject" %% "inject-server" % "2.0.0.RC1" % "test" classifier "tests",
"com.twitter.inject" %% "inject-app" % "2.0.0.RC1" % "test" classifier "tests",
"com.twitter.inject" %% "inject-core" % "2.0.0.RC1" % "test" classifier "tests",
"com.twitter.inject" %% "inject-modules" % "2.0.0.RC1" % "test" classifier "tests",
"org.mockito" % "mockito-core" % "1.9.5" % "test",
"org.scalatest" %% "scalatest" % "2.2.3" % "test",
"org.specs2" %% "specs2" % "2.3.12" % "test"
)
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots"),
"Twitter Maven" at "https://maven.twttr.com/",
DefaultMavenRepository
)
Seq(Revolver.settings: _*)
Seq(flywaySettings: _*)
flywayUrl := "jdbc:postgresql://localhost:5432/db"
flywayUser := "u"
javaOptions ++= Seq()
enablePlugins(JavaServerAppPackaging)
maintainer in Linux := "Fayimora Femi-Balogun <fayi@fayimora.com>"
packageSummary in Linux := "The service"
packageDescription := "This is the service for aaa"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment