Skip to content

Commit d2fa8bb

Browse files
author
Risto Yrjänä
committed
Fixes #1, SBT web-plugin version
'Elegant' solution from https://github.com/siasia/xsbt-web-plugin/wiki
1 parent 2a0ab87 commit d2fa8bb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

project/plugins.sbt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
// xsbt-web-plugin
22
resolvers += "Web plugin repo" at "http://siasia.github.com/maven2"
33

4-
libraryDependencies <+= sbtVersion(v => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.1-0.2.10")
4+
libraryDependencies <+= sbtVersion(v => v match {
5+
case "0.11.0" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.0-0.2.8"
6+
case "0.11.1" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.1-0.2.10"
7+
case "0.11.2" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.2-0.2.11"
8+
case "0.11.3" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.3-0.2.11.1"
9+
case x if (x.startsWith("0.12")) => "com.github.siasia" %% "xsbt-web-plugin" % "0.12.0-0.2.11.1"
10+
})
11+
512

613
// sbteclipse
714
resolvers += Classpaths.typesafeResolver

0 commit comments

Comments
 (0)