Skip to content

Instantly share code, notes, and snippets.

@OlegIlyenko
Created December 11, 2011 19:01
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 OlegIlyenko/1462125 to your computer and use it in GitHub Desktop.
Save OlegIlyenko/1462125 to your computer and use it in GitHub Desktop.
Publishing Pamflet with SBT and gh-pages (project/project/Build.scala)
import sbt._
object PluginDef extends Build {
override def projects = Seq(root)
lazy val root = Project("plugins", file(".")) dependsOn (ghpages, pamflet)
lazy val ghpages = uri("git://github.com/jsuereth/xsbt-ghpages-plugin.git")
lazy val pamflet = uri("git://github.com/n8han/pamflet-plugin#0.3.0")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment