Created
September 20, 2013 17:42
-
-
Save fayimora/6641111 to your computer and use it in GitHub Desktop.
This file contains 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
import com.typesafe.sbt.SbtNativePackager._ | |
import com.typesafe.sbt.packager.Keys._ | |
name := "play22" | |
name in Debian := "play_deb" | |
name in Linux := "play_deb" | |
version := "0.0.1" | |
version in Debian := "0.0.1" | |
version in Linux := "0.0.1" | |
description := "The description" | |
description in Debian := "The description" | |
description in Linux := "The description" | |
maintainer := "Fayimora <[email protected]>" | |
maintainer in Debian := "Fayimora <[email protected]>" | |
maintainer in Linux := "Fayimora <[email protected]>" | |
packageDescription := "The description" | |
packageDescription in Debian := "A very long crazy description" | |
packageDescription in Linux := "A very long crazy description" | |
packageSummary := "A package summary!" | |
packageSummary in Debian := "A package summary!" | |
packageSummary in Linux := "A package summary!" | |
libraryDependencies ++= Seq( | |
jdbc, | |
anorm, | |
cache | |
) | |
play.Project.playScalaSettings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment