You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2006/03/23 02:00:41 UTC

svn commit: r387984 - /incubator/solr/trunk/build.xml

Author: yonik
Date: Wed Mar 22 17:00:38 2006
New Revision: 387984

URL: http://svn.apache.org/viewcvs?rev=387984&view=rev
Log:
add debugging info by default so we get linenumbers in stacktraces

Modified:
    incubator/solr/trunk/build.xml

Modified: incubator/solr/trunk/build.xml
URL: http://svn.apache.org/viewcvs/incubator/solr/trunk/build.xml?rev=387984&r1=387983&r2=387984&view=diff
==============================================================================
--- incubator/solr/trunk/build.xml (original)
+++ incubator/solr/trunk/build.xml Wed Mar 22 17:00:38 2006
@@ -68,6 +68,7 @@
     <javac destdir="${dest}"
            target="1.5"
 	   source="1.5"
+	   debug="on"
            classpathref="compile.classpath">
       <src path="${src}/java" />
       <src path="${src}/webapp" />
@@ -121,6 +122,7 @@
        destdir="${dest}/tests"
        target="1.5"
        source="1.5"
+       debug="on"
        classpathref="test.compile.classpath">
       <src path="${src}/test" />
       <src path="${src}/apps/SolrTest/src" />