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 ho...@apache.org on 2006/02/25 02:21:38 UTC

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

Author: hossman
Date: Fri Feb 24 17:21:36 2006
New Revision: 380879

URL: http://svn.apache.org/viewcvs?rev=380879&view=rev
Log:
code requires 1.5, so be explicit in build.xml to cause a meaningful failure

Modified:
    incubator/solr/trunk/build.xml

Modified: incubator/solr/trunk/build.xml
URL: http://svn.apache.org/viewcvs/incubator/solr/trunk/build.xml?rev=380879&r1=380878&r2=380879&view=diff
==============================================================================
--- incubator/solr/trunk/build.xml (original)
+++ incubator/solr/trunk/build.xml Fri Feb 24 17:21:36 2006
@@ -66,6 +66,8 @@
     <mkdir dir="${dest}" />
 
     <javac destdir="${dest}"
+           target="1.5"
+	   source="1.5"
            classpathref="compile.classpath">
       <src path="${src}/java" />
       <src path="${src}/webapp" />
@@ -117,6 +119,8 @@
     <mkdir dir="${dest}/tests" />
     <javac 
        destdir="${dest}/tests"
+       target="1.5"
+       source="1.5"
        classpathref="test.compile.classpath">
       <src path="${src}/test" />
       <src path="${src}/apps/SolrTest/src" />