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