* Fix broken generation of classpath for jMonkeyEngine3.jar

experimental
shadowislord 11 years ago
parent 6680a1dec4
commit 7cdc473e14
  1. 2
      jme3-examples/build.gradle

@ -38,7 +38,7 @@ jar.doFirst{
'Class-Path' : configurations.compile.resolvedConfiguration.resolvedArtifacts.collect {
'lib/' +
it.name +
it.classifier != null ? '-' + it.classifier : '' +
(it.classifier != null ? '-' + it.classifier : '') +
'.' + it.extension }.join(' ')
)
}

Loading…
Cancel
Save