pekko/project/plugins/Plugins.scala

11 lines
566 B
Scala
Raw Normal View History

2010-04-16 14:36:51 +02:00
import sbt._
class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
val databinderRepo = "Databinder Repository" at "http://databinder.net/repo"
val embeddedRepo = "Embedded Repo" at (info.projectPath / "embedded-repo").asURL.toString
val spdeSbt = "us.technically.spde" % "spde-sbt-plugin" % "0.4.1"
val codeFellow = "de.tuxed" % "codefellow-plugin" % "0.3" // for code completion and more in VIM
// val repo = "GH-pages repo" at "http://mpeltonen.github.com/maven/"
// val idea = "com.github.mpeltonen" % "sbt-idea-plugin" % "0.1-SNAPSHOT"
2010-06-01 18:41:39 +02:00
}