ctf-server

old server for hosting capture-the-flag

git clone https://9o.is/git/ctf-server.git

plugins.sbt

(944B)


      1 //webplugin
      2 resolvers += "Web plugin repo" at "http://siasia.github.com/maven2"
      3 
      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.10"
      8   case "0.11.3" => "com.github.siasia" %% "xsbt-web-plugin" % "0.11.3-0.2.11.1"
      9   case "0.12.0" => "com.github.siasia" %% "xsbt-web-plugin" % "0.12.0-0.2.11.1"
     10   case "0.12.1" => "com.github.siasia" %% "xsbt-web-plugin" % "0.12.0-0.2.11.1"
     11   case _ => "com.github.siasia" %% "xsbt-web-plugin" % "0.12.0-0.2.11.1"
     12 })
     13 
     14 resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
     15 
     16 addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.2.0")
     17 
     18 addSbtPlugin("org.scala-sbt" % "sbt-closure" % "0.1.3")
     19 
     20 addSbtPlugin("me.lessis" % "less-sbt" % "0.1.10")