Skip to content

Instantly share code, notes, and snippets.

@nefilim
Created August 16, 2013 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nefilim/6253892 to your computer and use it in GitHub Desktop.
Save nefilim/6253892 to your computer and use it in GitHub Desktop.
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