diff --git a/project/build/SbtProject.scala b/project/build/SbtProject.scala index 1b2189e5c..23ef7c534 100644 --- a/project/build/SbtProject.scala +++ b/project/build/SbtProject.scala @@ -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" diff --git a/project/plugins/Plugins.scala b/project/plugins/Plugins.scala index dc50f8a8c..69c22133f 100644 --- a/project/plugins/Plugins.scala +++ b/project/plugins/Plugins.scala @@ -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) }