|
From: <mar...@us...> - 2009-10-15 15:42:41
|
Revision: 275
http://gridsim.svn.sourceforge.net/gridsim/?rev=275&view=rev
Author: marcos_dias
Date: 2009-10-15 15:42:32 +0000 (Thu, 15 Oct 2009)
Log Message:
-----------
This update fixes a bug in the build.xml file, which prevented the make jar targed from copying .properties file into gridsim.jar
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2009-09-24 09:00:48 UTC (rev 274)
+++ trunk/build.xml 2009-10-15 15:42:32 UTC (rev 275)
@@ -49,6 +49,9 @@
<!-- rule to compile GridSim source files -->
<target name="build" depends="prepare">
<javac srcdir="${src.dir}" destdir="${class.dir}" classpath="${classpath}" />
+ <copy todir="${class.dir}">
+ <fileset dir="${src.dir}/" includes="**/*.properties"/>
+ </copy>
</target>
<!-- rule for making a jar file.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|