Skip to content

Commit 2e3f366

Browse files
committed
Fixing on a specific minimum jme release. It's easier for
apps this way because we don't force-upgrade their versions for them.
1 parent 1ec8418 commit 2e3f366

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ apply plugin: 'maven'
1717
version='1.0.2-SNAPSHOT'
1818
group='com.simsilica'
1919

20+
ext.jmeVersion = "3.1.0-alpha4"
21+
2022
// Version meta-data
2123
ext {
2224
releaseDescription = "Sim-Math ${project.version}"
@@ -48,7 +50,7 @@ configurations.compile {
4850
dependencies {
4951
// Pull in jme core for the math package for easy translation to/from JME
5052
// classes.
51-
compile "org.jmonkeyengine:jme3-core:[3.1,)"
53+
compile "org.jmonkeyengine:jme3-core:$jmeVersion"
5254
}
5355

5456

release-notes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ Version 1.0.2 (unreleased)
55
earliest/latest transition for out-of-range times. For 'false',
66
it will return null for out-of-range times.
77
* Modified TransitionBuffer to remove the System.out.println() for
8-
out-of-range times.
8+
out-of-range times.
9+
* Modified the build.gradle to replace the JME version with a specific
10+
version instead of letting it float. I think alpha4 is generally
11+
the minimum accepted 3.1 version at this point.
912

1013
Version 1.0.1
1114
--------------

0 commit comments

Comments
 (0)