Skip to content
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

Using a Specific Version of 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.

Clone this wiki locally