Created
August 16, 2013 22:08
-
-
Save nefilim/6253892 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 sbt._ | |
import Keys._ | |
import sbtprotobuf.{ProtobufPlugin=>PB} | |
object MyBuild extends Build { | |
lazy val root = Project( | |
id = "toastyphoenix", | |
base = file("."), | |
settings = Defaults.defaultSettings ++ PB.protobufSettings ++ Seq( | |
version := "2.5.0" | |
) | |
) | |
} | |
resolvers ++= Seq( | |
Classpaths.typesafeResolver | |
) | |
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.4.0") | |
addSbtPlugin("com.github.gseitz" % "sbt-protobuf" % "0.3.0") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment