Skip to content

Commit

Permalink
changing config to apply db evolutions in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
retroryan committed Jan 28, 2012
1 parent 1d28142 commit 066523b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 0 additions & 2 deletions conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ db.default.url=${MY_DATABASE_URL}

applyEvolutions.default=true



# Ebean configuration
# ~~~~~
# You can declare as many Ebean servers as you want.
Expand Down
3 changes: 2 additions & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ object ApplicationBuild extends Build {

val postgresql = "postgresql" % "postgresql" % "9.0-801.jdbc3"


val appDependencies = Seq(
// Add your project dependencies here,
postgresql
Expand All @@ -17,7 +18,7 @@ object ApplicationBuild extends Build {
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(
// Add your own project settings here
resolvers ++= Seq(DefaultMavenRepository,
Resolver.url("Play", url("https://playframework2.ci.cloudbees.com/job/play2-integrationtest/ws/repository/local/"))
Resolver.url("Play", url("http://playrepository.s3-website-us-east-1.amazonaws.com/repository/local/"))
(Resolver.ivyStylePatterns), "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/")
)

Expand Down
5 changes: 3 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ logLevel := Level.Warn

resolvers ++= Seq(
DefaultMavenRepository,
Resolver.url("Play", url("https://playframework2.ci.cloudbees.com/job/play2-integrationtest/ws/repository/local/"))(Resolver.ivyStylePatterns),
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
Resolver.url("Play", url("http://playrepository.s3-website-us-east-1.amazonaws.com/repository/local/"))(Resolver.ivyStylePatterns),
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/" ,
"typesafe-ivy-releases" at "http://repo.typesafe.com/typesafe/ivy-releases/"
)

addSbtPlugin("play" % "sbt-plugin" % "2.0-RC1-SNAPSHOT")
Expand Down

0 comments on commit 066523b

Please sign in to comment.