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-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)
|
2009-12-05 03:26:31 +01:00
|
|
|
}
|