dist build: ensure native bullet is included in dist package

experimental
Kirill Vainer 10 years ago
parent 67d982a64c
commit 88663b0bc3
  1. 13
      jme3-examples/build.gradle

@ -21,7 +21,6 @@ dependencies {
// compile project(':jme3-bullet-native') // compile project(':jme3-bullet-native')
compile project(':jme3-jbullet') compile project(':jme3-jbullet')
compile project(':jme3-jogg') compile project(':jme3-jogg')
// compile project(':jme3-jogl')
compile project(':jme3-lwjgl') compile project(':jme3-lwjgl')
compile project(':jme3-networking') compile project(':jme3-networking')
compile project(':jme3-niftygui') compile project(':jme3-niftygui')
@ -51,7 +50,9 @@ jar.doFirst{
} }
} }
task dist (dependsOn: ['build', ':jme3-jogl:jar', ':jme3-bullet:jar', ':jme3-android:jar']) << { task dist (dependsOn: ['build', ':jme3-jogl:jar', ':jme3-bullet:jar', ':jme3-android:jar', \
':jme3-android-native:jar', ':jme3-bullet-native-android:jar', \
':jme3-bullet-native:jar']) << {
// Copy all dependencies to ../dist/lib, remove versions from jar files // Copy all dependencies to ../dist/lib, remove versions from jar files
configurations.compile.resolvedConfiguration.resolvedArtifacts.each { artifact -> configurations.compile.resolvedConfiguration.resolvedArtifacts.each { artifact ->
copy { copy {
@ -97,23 +98,23 @@ task dist (dependsOn: ['build', ':jme3-jogl:jar', ':jme3-bullet:jar', ':jme3-and
copy { copy {
from project(':jme3-bullet-native').jar.archivePath from project(':jme3-bullet-native').jar.archivePath
into '../dist/opt/native-bullet' into '../dist/opt/native-bullet'
rename {"jme3-bullet-natives.jar"} rename {project(':jme3-bullet-native').name+".jar"}
} }
// Copy android packages, remove version // Copy android packages, remove version
copy { copy {
from project(':jme3-android').jar.archivePath from project(':jme3-android').jar.archivePath
into '../dist/opt/android' into '../dist/opt/android'
rename { project(':jme3-android').name + ".jar" } rename {project(':jme3-android').name+".jar"}
} }
copy { copy {
from project(':jme3-android-native').jar.archivePath from project(':jme3-android-native').jar.archivePath
into '../dist/opt/android' into '../dist/opt/android'
rename { project(':jme3-android-native').name + ".jar" } rename {project(':jme3-android-native').name+".jar"}
} }
copy { copy {
from project(':jme3-bullet-native-android').jar.archivePath from project(':jme3-bullet-native-android').jar.archivePath
into '../dist/opt/native-bullet' into '../dist/opt/native-bullet'
rename {"jme3-bullet-native-android.jar"} rename {project(':jme3-bullet-native-android').name+".jar"}
} }
} }

Loading…
Cancel
Save