The jMonkeyEngine3 Software Development Kit based on Netbeans
|
il y a 9 ans | |
---|---|---|
BasicGameTemplate | il y a 9 ans | |
JME3TestsTemplate | il y a 10 ans | |
JME3TestsTemplateAndroid | il y a 10 ans | |
ant-jme | il y a 10 ans | |
ant-lib | il y a 10 ans | |
branding | il y a 9 ans | |
debscripts | il y a 14 ans | |
docs | il y a 9 ans | |
gradle | il y a 9 ans | |
harness-override | il y a 9 ans | |
jdks | il y a 9 ans | |
jme3-android | il y a 9 ans | |
jme3-angelfont | il y a 9 ans | |
jme3-assetpack-support | il y a 9 ans | |
jme3-blender | il y a 9 ans | |
jme3-cinematics | il y a 9 ans | |
jme3-code-check | il y a 9 ans | |
jme3-codepalette | il y a 9 ans | |
jme3-core | il y a 9 ans | |
jme3-core-baselibs | il y a 9 ans | |
jme3-core-libraries | il y a 9 ans | |
jme3-core-updatecenters | il y a 9 ans | |
jme3-dark-laf | il y a 9 ans | |
jme3-desktop-executables | il y a 9 ans | |
jme3-documentation | il y a 9 ans | |
jme3-gui | il y a 9 ans | |
jme3-ios | il y a 9 ans | |
jme3-lwjgl-applet | il y a 9 ans | |
jme3-materialeditor | il y a 9 ans | |
jme3-model-importer | il y a 9 ans | |
jme3-navmesh-gen | il y a 9 ans | |
jme3-obfuscate | il y a 9 ans | |
jme3-ogretools | il y a 9 ans | |
jme3-ogrexml | il y a 9 ans | |
jme3-project-baselibs | il y a 9 ans | |
jme3-project-libraries | il y a 10 ans | |
jme3-project-testdata | il y a 10 ans | |
jme3-scenecomposer | il y a 9 ans | |
jme3-templates | il y a 9 ans | |
jme3-terrain-editor | il y a 9 ans | |
jme3-tests-template | il y a 9 ans | |
jme3-texture-editor | il y a 9 ans | |
jme3-vehicle-creator | il y a 9 ans | |
jme3-wavefront | il y a 9 ans | |
jme3-welcome-screen | il y a 9 ans | |
lib | il y a 9 ans | |
nbi | il y a 9 ans | |
nbproject | il y a 9 ans | |
patches | il y a 9 ans | |
resources | il y a 9 ans | |
.gitignore | il y a 9 ans | |
.travis.yml | il y a 9 ans | |
build.gradle | il y a 9 ans | |
build.xml | il y a 9 ans | |
build_engine.sh | il y a 9 ans | |
gradle.properties | il y a 9 ans | |
gradlew | il y a 9 ans | |
gradlew.bat | il y a 9 ans | |
jmonkeyplatform.icns | il y a 10 ans | |
jmonkeyplatform.png | il y a 10 ans | |
license-jme.txt | il y a 9 ans | |
licenses-sdk.txt | il y a 9 ans | |
readme.md | il y a 9 ans | |
version.gradle | il y a 9 ans |
This repo holds the Legacy SDK of jMonkeyEngine, based on Netbeans platform.
You'll need several things to have the SDK build and run:
netbeans/
).Before hopping into Netbeans plugin development you'll need to build the project using gradle command:
gradlew(.bat) buildSdk
Then you'll be able to open the project in the bundled netbeans and start your devs.
When in Netbeans right click on the SDK project and choose : package as...
then choose whatever distribution you fancy.
If you however want to Debug an SDK Issue you click on Run/Debug instead
The sdk uses jME published artifacts. You can change the version of these artifacts by editing the build.gradle file and changing the ext.jmeFullVersion variable to a proper version.
jME official release are published on jcenter. You'll find there all the releases listed here since jME 3.1.0-alpha2 To use jcenter as a repository just put :
jcenter()
or
jcenter {
url "http://jcenter.bintray.com/"
}
in the repositories section of the build.gradle. Then you have to change the jmeFullVersion to whatever official release version.
example : 3.1.0-alpha2
jME is built on each commit, and a SNAPSHOT version is done and published on a custom public repo To use this repository just put :
maven {
url "http://updates.jmonkeyengine.org/maven/"
}
in the repositories section of the build.gradle. Then you have to change the jmeFullVersion to a SNAPSHOT version.
example : 3.1.0-SNAPSHOT
WARNING !!! Note that depending on how often gradle updates your dependencies, using SNAPSHOT version can break your build any time
You can use jitpack as a repository to be able to build jME dependencies from any branch or commit. To use jitpack as a repository just put :
maven {
url "https://jitpack.io"
}
in the repositories section of the build.gradle. Then you have to change the jmeFullVersion to a branch or commit tag (see jitpack documentation).
example : PBRisComing-SNAPSHOT
WARNING !!! Note that depending on how often gradle updates your dependencies, using branch or commit dependency version can break your build any time