posterous-sbt plugin

This commit is contained in:
Mark Harrah 2010-02-15 20:05:40 -05:00
parent 3907dc36da
commit 3c789c8a81
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import sbt._
import java.io.File
import java.net.URL
class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted //with posterous.Publish
class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtScripted with posterous.Publish
{
/* Additional resources to include in the produced jar.*/
def extraResources = descendents(info.projectPath / "licenses", "*") +++ "LICENSE" +++ "NOTICE"

View File

@ -5,6 +5,7 @@ import java.net.URL
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
{
val scripted = "org.scala-tools.sbt" % "scripted" % "0.7.0"
// val posterous = "net.databinder" % "posterous-sbt" % "0.1.0-SNAPSHOT"
val t_repo = "t_repo" at "http://tristanhunt.com:8081/content/groups/public/"
val posterous = "net.databinder" % "posterous-sbt" % "0.1.3"
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
}