2009-12-05 03:26:31 +01:00
|
|
|
import sbt._
|
|
|
|
|
|
2009-12-05 17:02:41 +01:00
|
|
|
import java.net.URL
|
|
|
|
|
|
2009-12-05 03:26:31 +01:00
|
|
|
class Plugins(info: ProjectInfo) extends PluginDefinition(info)
|
|
|
|
|
{
|
2010-05-17 03:33:27 +02:00
|
|
|
val scripted = "org.scala-tools.sbt" % "scripted" % "0.7.4"
|
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)
|
2009-12-05 03:26:31 +01:00
|
|
|
}
|