The jMonkeyEngine3 Software Development Kit based on Netbeans
|
преди 9 години | |
---|---|---|
BasicGameTemplate | преди 9 години | |
JME3TestsTemplate | преди 10 години | |
JME3TestsTemplateAndroid | преди 10 години | |
ant-jme | преди 10 години | |
ant-lib | преди 10 години | |
branding | преди 9 години | |
debscripts | преди 14 години | |
docs | преди 9 години | |
gradle | преди 9 години | |
harness-override | преди 9 години | |
jdks | преди 9 години | |
jme3-android | преди 9 години | |
jme3-angelfont | преди 9 години | |
jme3-assetpack-support | преди 9 години | |
jme3-blender | преди 9 години | |
jme3-cinematics | преди 9 години | |
jme3-code-check | преди 9 години | |
jme3-codepalette | преди 9 години | |
jme3-core | преди 9 години | |
jme3-core-baselibs | преди 9 години | |
jme3-core-libraries | преди 9 години | |
jme3-core-updatecenters | преди 9 години | |
jme3-dark-laf | преди 9 години | |
jme3-desktop-executables | преди 9 години | |
jme3-documentation | преди 9 години | |
jme3-gui | преди 9 години | |
jme3-ios | преди 9 години | |
jme3-lwjgl-applet | преди 9 години | |
jme3-materialeditor | преди 9 години | |
jme3-model-importer | преди 9 години | |
jme3-navmesh-gen | преди 9 години | |
jme3-obfuscate | преди 9 години | |
jme3-ogretools | преди 9 години | |
jme3-ogrexml | преди 9 години | |
jme3-project-baselibs | преди 9 години | |
jme3-project-libraries | преди 10 години | |
jme3-project-testdata | преди 10 години | |
jme3-scenecomposer | преди 9 години | |
jme3-templates | преди 9 години | |
jme3-terrain-editor | преди 9 години | |
jme3-tests-template | преди 9 години | |
jme3-texture-editor | преди 9 години | |
jme3-vehicle-creator | преди 9 години | |
jme3-wavefront | преди 9 години | |
jme3-welcome-screen | преди 9 години | |
lib | преди 9 години | |
nbi | преди 9 години | |
nbproject | преди 9 години | |
resources | преди 9 години | |
.gitignore | преди 9 години | |
.travis.yml | преди 9 години | |
build.gradle | преди 9 години | |
build.xml | преди 9 години | |
gradle.properties | преди 9 години | |
gradlew | преди 9 години | |
gradlew.bat | преди 9 години | |
jmonkeyplatform.icns | преди 10 години | |
jmonkeyplatform.png | преди 10 години | |
license-jme.txt | преди 9 години | |
licenses-sdk.txt | преди 9 години | |
readme.md | преди 9 години | |
version.gradle | преди 9 години |
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