sbt/project/plugins/Plugins.scala

11 lines
354 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-15 04:59:35 +01:00
// val posterous = "net.databinder" % "posterous-sbt" % "0.1.0-SNAPSHOT"
2009-12-05 17:02:41 +01:00
val technically = Resolver.url("technically.us", new URL("http://databinder.net/repo/"))(Resolver.ivyStylePatterns)
}