[Cherbot-commit] SF.net SVN: cherbot: [120] trunk/build.xml
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-10-12 19:06:09
|
Revision: 120
http://cherbot.svn.sourceforge.net/cherbot/?rev=120&view=rev
Author: christianhujer
Date: 2007-10-12 12:06:05 -0700 (Fri, 12 Oct 2007)
Log Message:
-----------
Fixed bug: properties files unavailable after compilation.
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2007-09-23 22:14:04 UTC (rev 119)
+++ trunk/build.xml 2007-10-12 19:06:05 UTC (rev 120)
@@ -43,6 +43,11 @@
<compilerarg line="-Xmaxerrs 400"/>
<compilerarg line="-Xmaxwarns 4000"/>
</javac>
+ <copy todir="classes">
+ <fileset dir="src">
+ <include name="**/*.properties"/>
+ </fileset>
+ </copy>
</target>
<target
@@ -115,11 +120,6 @@
description = "creates a jar archive containing the CherBot"
depends = "compile"
>
- <copy todir="classes">
- <fileset dir="src">
- <include name="**/*.properties"/>
- </fileset>
- </copy>
<jar destfile="CherBot.jar">
<manifest>
<attribute name="Main-Class" value="net.sf.cherbot.CherBot" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|