-
Notifications
You must be signed in to change notification settings - Fork 12
jMonkey Support
philcali edited this page Mar 22, 2011
·
9 revisions
jMonkey does not have a public maven repo for its dependencies. Making sbt go fetch the latest is about the best we can get here.
The default behavior is that update
will pull the latest nightly build for jMonkey version 3.
class Project(info: ProjectInfo) extends LWJGLProject(info) with JMonkey
// Target a different version with overrides
class Project... {
override def jmonkeyBaseVersion = "jME2"
override def targetedVersion = "2011-03-21"
}
This kind of configuration will only pull once, as expected.