Here is my plugins.sbt
logLevel := Level.Warn
resolvers ++= Seq(
DefaultMavenRepository,
Resolver.url("Play", url("
http://download.playframework.org/ivy-
releases/"))(Resolver.ivyStylePatterns),
"Typesafe Repository" at "
http://repo.typesafe.com/typesafe/
releases/",
"Typesafe snapshots" at "
http://repo.typesafe.com/typesafe/
snapshots/"
)
addSbtPlugin("play" % "sbt-plugin" % "2.0-RC1-SNAPSHOT")
And my Build.scala
val appDependencies = Seq(
"mysql" % "mysql-connector-java" % "5.1.18",
"org.apache.commons" % "commons-email" % "1.2",
"c3p0" % "c3p0" % "0.9.1.2"
)
val main = PlayProject(appName, appVersion, appDependencies,
mainLang = SCALA).settings(
// Add your own project settings here
)
This puts me around 111mb on heroku. You can't go over 100mb. My
entire app directory is only 1.5mb. Is there something I can do to
reduce the size? Thanks for the help.