Skip to content

Instantly share code, notes, and snippets.

@arturaz
Created September 19, 2012 08:45
Show Gist options
  • Save arturaz/3748482 to your computer and use it in GitHub Desktop.
Save arturaz/3748482 to your computer and use it in GitHub Desktop.
import sbt._
import sbt.Keys._
object PluginDef extends Build {
override lazy val projects = Seq(root)
lazy val igeoliseLib = RootProject(file("../../lib"))
lazy val root = Project(
"plugins", file("."),
settings = Defaults.defaultSettings ++ Seq(
// Comment to get more information during initialization
logLevel := Level.Warn,
// The Typesafe repository
resolvers += "Typesafe repository" at
"http://repo.typesafe.com/typesafe/releases/",
// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0.3")
)
) dependsOn(igeoliseLib)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment