sbt/project/plugins/Plugins.scala

12 lines
422 B
Scala
Raw Normal View History

import sbt._
2009-12-05 17:02:41 +01:00
import java.net.URL
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
{
2010-02-15 05:43:51 +01:00
val scripted = "org.scala-tools.sbt" % "scripted" % "0.7.0"
2010-02-16 02:05:40 +01:00
val t_repo = "t_repo" at "http://tristanhunt.com:8081/content/groups/public/"
2010-03-24 01:43:17 +01:00
val posterous = "net.databinder" % "posterous-sbt" % "0.1.4"
2009-12-05 17:02:41 +01:00
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
}