sbt / sbt-onejar

Packages your project using One-JAR™
MIT License
268 stars 45 forks source link

sbt 0.11.3 version #12

Closed takezoe closed 12 years ago

takezoe commented 12 years ago

sbt-onejar plugin 0.7 works on sbt 0.11.2 but I want to upgrade sbt to 0.11.3. It seems that sbt-onejar plugin is ready for sbt 0.11.3 by this commit: https://github.com/sbt/sbt-onejar/commit/65a61c14d6bbbee0168fd96a5fc8d2b017eda8b9

Is the version of sbt-onejar plugin for sbt 0.11.3 already published? or Are there a plan to release the new version which support sbt 0.11.3?

leedm777 commented 12 years ago

+1.

Until the release is made, you can add the following to ./project/project/MyPlugins.scala:

import sbt._

object MyPlugins extends Build {
  lazy val root = Project("root", file(".")) dependsOn (oneJar)
  lazy val oneJar = uri("git://github.com/sbt/sbt-onejar.git#65a61c14d6bbbee0168fd96a5fc8d2b017eda8b9")
}
taylorleese commented 12 years ago

+1 Looking forward to the 11.3 version being published.

kim-em commented 12 years ago

+1 hoping the 0.11.3 version will be published. (leedm777's workaround unfortunately doesn't work for me.)

filosganga commented 12 years ago

+1

efuquen commented 12 years ago

+1 - 2 months now guys, hoping this will get published soon.

retronym commented 12 years ago

Sorry about the delay, this is now published. I've also published a version in readiness for SBT 0.12.0.

http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/com.github.retronym/sbt-onejar/scala_2.9.1/ http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/com.github.retronym/sbt-onejar/scala_2.9.2/

kim-em commented 12 years ago

Fabulous, thank you so much Jason!

takezoe commented 12 years ago

Great, thanks a lot!