Skip to content

Commit 70e5fdb

Browse files
committed
Finish 1.6.0
2 parents 61ab0a5 + ddceb8f commit 70e5fdb

File tree

674 files changed

+12628
-16685
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

674 files changed

+12628
-16685
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# jMonkeyBuilder 1.4.0 #
1+
# jMonkeyBuilder 1.6.0 #
22
### It's 3D Editor to prepare/work/create graphics content for jMonkeyEngine 3.2 ###
33

44
[![Join the chat at https://gitter.im/jME3-SpaceShift-Editor/Lobby](https://badges.gitter.im/jME3-SpaceShift-Editor/Lobby.svg)](https://gitter.im/jME3-SpaceShift-Editor/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

app.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0
1+
1.6.0

build.gradle

Lines changed: 16 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'idea'
1313
apply plugin: 'org.junit.platform.gradle.plugin'
1414

1515
group = 'com.spaceshift'
16-
version = '1.5.0'
16+
version = '1.6.0'
1717

1818
sourceCompatibility = 1.8
1919
targetCompatibility = 1.8
@@ -24,12 +24,12 @@ compileTestJava {
2424
options.compilerArgs += '-parameters'
2525
}
2626

27-
ext.applicationMainClass = "com.ss.editor.JFXApplication"
27+
ext.applicationMainClass = "com.ss.editor.JfxApplication"
2828
ext.applicationVendor = "[email protected]"
2929
ext.applicationTitle = "jMonkeyBuilder"
30-
ext.jmeVersion = "3.3_branch-SNAPSHOT"
30+
ext.jmeVersion = "v3.3.dev-SNAPSHOT"
31+
ext.jmbExtVersion = "1.9.7"
3132
ext.jme3_xbuf_version = '0.9.1'
32-
ext.lwjglVersion = "3.1.5"
3333
ext.junitPlatformVersion = "1.0.0"
3434
ext.junitJupiterVersion = "5.0.0"
3535
ext.log4jVersion = '2.6.2'
@@ -58,11 +58,11 @@ dependencies {
5858

5959
// base
6060
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.8.1'
61-
compile 'org.controlsfx:controlsfx:8.40.13'
61+
compile 'org.controlsfx:controlsfx:8.40.14'
6262

6363
compile 'com.github.JavaSaBr:RlibFX:4.1.3'
64-
compile 'com.github.JavaSaBr:RLib:6.7.1'
65-
compile 'com.github.JavaSaBr:JME3-JFX:1.7.1'
64+
compile 'com.github.JavaSaBr:RLib:6.7.4'
65+
compile "com.github.JavaSaBr:JME3-JFX:1.7.3"
6666

6767
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
6868
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.6'
@@ -95,52 +95,29 @@ dependencies {
9595
exclude group: 'lessvoid'
9696
}
9797

98-
// LWJGL
99-
compile "org.lwjgl:lwjgl:${lwjglVersion}"
100-
compile "org.lwjgl:lwjgl-glfw:${lwjglVersion}"
101-
compile "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}"
102-
compile "org.lwjgl:lwjgl-openal:${lwjglVersion}"
103-
compile "org.lwjgl:lwjgl-opencl:${lwjglVersion}"
104-
compile "org.lwjgl:lwjgl-opengl:${lwjglVersion}"
105-
compile "org.lwjgl:lwjgl-stb:${lwjglVersion}"
106-
runtime "org.lwjgl:lwjgl:${lwjglVersion}:natives-windows"
107-
runtime "org.lwjgl:lwjgl:${lwjglVersion}:natives-linux"
108-
runtime "org.lwjgl:lwjgl:${lwjglVersion}:natives-macos"
109-
runtime "org.lwjgl:lwjgl-glfw:${lwjglVersion}:natives-windows"
110-
runtime "org.lwjgl:lwjgl-glfw:${lwjglVersion}:natives-linux"
111-
runtime "org.lwjgl:lwjgl-glfw:${lwjglVersion}:natives-macos"
112-
runtime "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}:natives-windows"
113-
runtime "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}:natives-linux"
114-
runtime "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}:natives-macos"
115-
runtime "org.lwjgl:lwjgl-openal:${lwjglVersion}:natives-windows"
116-
runtime "org.lwjgl:lwjgl-openal:${lwjglVersion}:natives-linux"
117-
runtime "org.lwjgl:lwjgl-openal:${lwjglVersion}:natives-macos"
118-
runtime "org.lwjgl:lwjgl-opengl:${lwjglVersion}:natives-windows"
119-
runtime "org.lwjgl:lwjgl-opengl:${lwjglVersion}:natives-linux"
120-
runtime "org.lwjgl:lwjgl-opengl:${lwjglVersion}:natives-macos"
121-
runtime "org.lwjgl:lwjgl-stb:${lwjglVersion}:natives-windows"
122-
runtime "org.lwjgl:lwjgl-stb:${lwjglVersion}:natives-linux"
123-
runtime "org.lwjgl:lwjgl-stb:${lwjglVersion}:natives-macos"
124-
125-
12698
// http support
12799
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
128100
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.3'
129101

130102
// extensions
131-
compile ('com.github.JavaSaBr:jmonkeybuilder-extension:1.9.4') {
103+
compile ("com.github.JavaSaBr:jmonkeybuilder-extension:$jmbExtVersion") {
132104
exclude group: 'org.jmonkeyengine'
133105
}
134-
compile ('com.github.JavaSaBr:tonegodemitter:2.4.1') {
106+
107+
compile ("org.xbuf.jme3_xbuf:jme3_xbuf_loader:${jme3_xbuf_version}") {
135108
exclude group: 'org.jmonkeyengine'
136109
}
137110

138-
compile "org.xbuf.jme3_xbuf:jme3_xbuf_loader:${jme3_xbuf_version}"
139-
140111
// https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all
141112
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.5.0-beta-1'
142113

143114
// TESTS
115+
testRuntime "com.github.JavaSaBr.jmonkeyengine:jme3-lwjgl3:$jmeVersion"
116+
testCompile ("com.github.JavaSaBr:jmonkeybuilder-extension:$jmbExtVersion") {
117+
exclude group: 'org.jmonkeyengine'
118+
exclude group: 'com.github.JavaSaB.jmonkeyengine'
119+
}
120+
144121
testCompile "org.junit.platform:junit-platform-commons:$junitPlatformVersion"
145122
testRuntime "org.junit.platform:junit-platform-engine:$junitPlatformVersion"
146123

@@ -175,7 +152,6 @@ task prepareDependencies(type: Copy) {
175152
from configurations.runtime
176153
}
177154

178-
179155
task sourcesJar(type: Jar, dependsOn: classes) {
180156
classifier = 'sources'
181157
from sourceSets.main.allSource
Binary file not shown.
13.2 KB
Binary file not shown.
-340 KB
Binary file not shown.
379 KB
Binary file not shown.
22.8 KB
Binary file not shown.
1.87 MB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)