Author: mturk Date: Tue Apr 14 19:12:15 2009 New Revision: 764924 URL: http://svn.apache.org/viewvc?rev=764924&view=rev Log: Some ant fixes
Modified: commons/sandbox/runtime/trunk/build.xml Modified: commons/sandbox/runtime/trunk/build.xml URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/build.xml?rev=764924&r1=764923&r2=764924&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/build.xml (original) +++ commons/sandbox/runtime/trunk/build.xml Tue Apr 14 19:12:15 2009 @@ -39,7 +39,8 @@ <property name="junit.jar" value="${junit.home}/junit-4.5.jar"/> <property name="commons-logging.home" value="./lib"/> <property name="commons-logging.jar" value="${commons-logging.home}/commons-logging-1.1.1.jar"/> - <property name="runtime.library.path" value="${basedir}/src/main/native/.libs"/> + <property name="runtime.natives.path" value="${basedir}/src/main/native"/> + <property name="runtime.library.path" value="${runtime.natives.path}/.libs"/> <property name="compile.source" value="5"/> <property name="compile.target" value="5"/> @@ -224,7 +225,7 @@ basedir="${build.dir}/bin/java" excludes="**/*.java"> <manifest> - <section name="org/jboss/aloha"> + <section name="org/apache/commons/runtime/"> <attribute name="Specification-Title" value="Apache Commons Runtime library"/> <attribute name="Specification-Version" value="${version}"/> <attribute name="Specification-Vendor" value="Apache Software Foundation"/> @@ -234,6 +235,12 @@ <attribute name="Implementation-Version" value="${version} (build ${DSTAMP} ${TSTAMP})"/> </section> </manifest> + <!-- Include native libraries. (Naming will change) + <metainf dir="${runtime.natives.path}/"> + <include name=".libs"/> + <include name=".libs/**"/> + </metainf> + --> </jar> </target>