move log4j.properties into the classpath so that it's easier to run gw directly from an IDE

git-svn-id: http://google-refine.googlecode.com/svn/trunk@714 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Stefano Mazzocchi 2010-05-12 02:05:17 +00:00
parent 06da318eef
commit c5e24fb563
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@
<javac srcdir="${server.src.dir}" destdir="${server_classes.dir}" debug="true" includeAntRuntime="no">
<classpath refid="class.path" />
</javac>
<copy file="${conf.dir}/log4j.properties" tofile="${server_classes.dir}/log4j.properties"/>
<copy file="${server.src.dir}/log4j.properties" tofile="${server_classes.dir}/log4j.properties"/>
</target>
<target name="build" depends="build_server">
@ -69,7 +69,7 @@
<src path="${src.dir}"/>
<classpath refid="class.path" />
</javac>
<copy file="${conf.dir}/log4j.properties" tofile="${webapp_classes.dir}/log4j.properties"/>
<copy file="${server.src.dir}/log4j.properties" tofile="${webapp_classes.dir}/log4j.properties"/>
</target>
<target name="build_tests" depends="build">