mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 19:36:50 +00:00
32 lines
1.2 KiB
Scala
Executable File
32 lines
1.2 KiB
Scala
Executable File
resolvers += Classpaths.typesafeResolver
|
|
|
|
// addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse" % "1.5.0")
|
|
|
|
// resolvers += "sbt-deploy-repo" at "http://reaktor.github.com/sbt-deploy/maven"
|
|
// addSbtPlugin("fi.reaktor" %% "sbt-deploy" % "0.3.1-SNAPSHOT")
|
|
|
|
|
|
//xsbt-web-plugin
|
|
resolvers += "Web plugin repo" at "http://siasia.github.com/maven2"
|
|
|
|
libraryDependencies <+= sbtVersion(v => v match {
|
|
case "0.11.0" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.0-0.2.8"
|
|
case "0.11.1" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.1-0.2.10"
|
|
case "0.11.2" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.2-0.2.11"
|
|
case "0.11.3" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.3-0.2.11.1"
|
|
})
|
|
|
|
//sbteclipse
|
|
resolvers += {
|
|
val typesafeRepoUrl = new java.net.URL("http://repo.typesafe.com/typesafe/releases")
|
|
val pattern = Patterns(false, "[organisation]/[module]/[sbtversion]/[revision]/[type]s/[module](-[classifier])-[revision].[ext]")
|
|
Resolver.url("Typesafe Repository", typesafeRepoUrl)(pattern)
|
|
}
|
|
|
|
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0")
|
|
|
|
//sbt-idea
|
|
resolvers += "sbt-idea-repo" at "http://mpeltonen.github.com/maven/"
|
|
|
|
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.0.0")
|