Fix #456
This commit is contained in:
parent
06599d1eac
commit
93001ec290
@ -15,7 +15,7 @@ apply from: file('version.gradle')
|
|||||||
subprojects {
|
subprojects {
|
||||||
if(!project.name.equals('jme3-android-examples')) {
|
if(!project.name.equals('jme3-android-examples')) {
|
||||||
apply from: rootProject.file('common.gradle')
|
apply from: rootProject.file('common.gradle')
|
||||||
if (!['jme3-testdata', 'sdk'].contains(project.name)) {
|
if (!project.name.equals('jme3-testdata')) {
|
||||||
apply from: rootProject.file('bintray.gradle')
|
apply from: rootProject.file('bintray.gradle')
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -16,6 +16,9 @@ repositories {
|
|||||||
maven {
|
maven {
|
||||||
url "http://nifty-gui.sourceforge.net/nifty-maven-repo"
|
url "http://nifty-gui.sourceforge.net/nifty-maven-repo"
|
||||||
}
|
}
|
||||||
|
flatDir {
|
||||||
|
dirs rootProject.file('lib')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -5,5 +5,5 @@ if (!hasProperty('mainClass')) {
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile project(':jme3-core')
|
compile project(':jme3-core')
|
||||||
compile project(':jme3-plugins')
|
compile project(':jme3-plugins')
|
||||||
compile files('../lib/android.jar')
|
compileOnly 'android:android'
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,9 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile ('java3d:vecmath:1.3.1')
|
compile 'java3d:vecmath:1.3.1'
|
||||||
compile files('../lib/jbullet.jar', '../lib/stack-alloc.jar')
|
compile 'jbullet:jbullet'
|
||||||
|
compile 'stack-alloc:stack-alloc'
|
||||||
compile project(':jme3-core')
|
compile project(':jme3-core')
|
||||||
compile project(':jme3-terrain')
|
compile project(':jme3-terrain')
|
||||||
// compile project(':jme3-bullet')
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user