Created
December 11, 2011 19:01
-
-
Save OlegIlyenko/1462125 to your computer and use it in GitHub Desktop.
Publishing Pamflet with SBT and gh-pages (project/project/Build.scala)
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._ | |
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