[commited] Package: com.jmex.pool not exported in jars with build.xml

For the ones not familar with it, the pool-package is quite useful for creating pools of reusable elements.



As written in the subject using ant for building the jars, this package is not included. So where to pack it?

A jar of its own (like all the other jmex-package would be maybe too much…)

In my opinion this should be part of jme-core. What does the community think about this?

I packed the com.jmex.pool-package in the jme.jar.


Index: build.xml
===================================================================
--- build.xml   (revision 4826)
+++ build.xml   (working copy)
@@ -107,7 +107,7 @@
   <target name="dist-core" depends="compile, -enforce.jar.deps"
          description="generate jme jar file">
     <jar destfile="${jars}/jme.jar" basedir="${class}" update="no"
-         duplicate="fail" compress="true" includes="com/jme/**/*.class, com/jme/**/*.tga, com/jme/**/*.png, com/jme/**/*.glf, com/jme/**/*.vert, com/jme/**/*.frag" />
+         duplicate="fail" compress="true" includes="com/jme/**/*.class, com/jme/**/*.tga, com/jme/**/*.png, com/jme/**/*.glf, com/jme/**/*.vert, com/jme/**/*.frag,com/jmex/pool/**/*.class" />
   </target>
   <target name="dist-audio" depends="compile, -enforce.jar.deps"
           description="generate jme jar file (audio)">

ok,…now com.jmex.pool is added to pool. In the same line of the build.xml I bugfixed the wildcard ".glf" to ".gif".