-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for SBT v0.13 #37
Comments
I'm assuming that note in the README exists solely because it remains unpublished. I just built it locally with no problem. If the import sbt._
import Keys._
object Plugins extends Build {
lazy val root = project.in(file(".")).dependsOn(lwjglPlugin)
lazy val lwjglPlugin = uri("git://github.com/philcali/sbt-lwjgl-plugin.git")
} I think only a few things have changed since 3.1.4, so I guess it's worthy of a minor version bump. |
Ah, excellent, thank you! I'll see if it works for me. |
Yup, it looks like |
Is there any update on this? I'm having difficulties setting it up like @philcali suggested since I'm not very familiar with SBT, but I don't want to be stuck with Java 7 (older versions of SBT don't support Java 8). |
Hi @nstoddard , the following configuration worked for me, with sbt 0.13.11 (I added the plugin repository as described in the sbt documentation): project/plugins.sbt lazy val root = (project in file(".")).dependsOn(lwjglPlugin)
lazy val lwjglPlugin = uri("git://github.com/philcali/sbt-lwjgl-plugin") build.sbt seq(lwjglSettings: _*) Hope this helps. |
It says in the README file that SBT 0.13 is not currently supported. Is there a specific reason why this is the case?
I'd like to be able to use this plugin with a project that I believe also currently requires some v0.13-specific features. I'd be happy to fork the repo and take a crack at making it v0.13-compatible, but I'm not sure what exactly the issue is.
The text was updated successfully, but these errors were encountered: