Created
February 6, 2012 23:40
-
-
Save andypetrella/1755935 to your computer and use it in GitHub Desktop.
Play20 RC1 : sbt-idea
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
resolvers += Classpaths.typesafeResolver |
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
import sbt._ | |
import Keys._ | |
import PlayProject._ | |
object ApplicationBuild extends Build { | |
val appName = "playbasket" | |
val appVersion = "1.0" | |
val sbtIdeaRepo = "sbt-idea-repo" at "http://mpeltonen.github.com/maven/" | |
val appDependencies = Seq( | |
) | |
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings( | |
// Add your own project settings here | |
resolvers ++= Seq( | |
sbtIdeaRepo | |
) | |
) | |
} |
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
resolvers ++= Seq( | |
DefaultMavenRepository, | |
Resolver.url("Play", url("http://download.playframework.org/ivy-releases/"))(Resolver.ivyStylePatterns), | |
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/" | |
) | |
addSbtPlugin("play" % "sbt-plugin" % "2.0-RC1-SNAPSHOT") | |
resolvers += "sbt-idea-repo" at "http://mpeltonen.github.com/maven/" | |
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "0.11.1-SNAPSHOT") | |
libraryDependencies += "play" %% "play" % "2.0-RC1-SNAPSHOT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment