Return-Path: Delivered-To: apmail-jakarta-ant-user-archive@jakarta.apache.org Received: (qmail 38541 invoked by uid 500); 23 May 2001 12:43:09 -0000 Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: ant-user@jakarta.apache.org Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 38531 invoked from network); 23 May 2001 12:43:08 -0000 X-Authentication-Warning: bodewig.bost.de: bodewig set sender to bodewig@apache.org using -f To: ant-user@jakarta.apache.org Subject: Re: Building files in a package in order References: From: Stefan Bodewig Date: 23 May 2001 14:43:08 +0200 In-Reply-To: Rajkumar Seth's message of "Wed, 23 May 2001 13:31:08 +0100" Message-ID: Lines: 27 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Rajkumar Seth wrote: > destdir="${build.classes}" > classpath="${classpath}" > debug="on" deprecation="on"> > > > > > > OK, quite a few build.classes references here 8-) You can drop both src elements as they do the same as the srcdir attribute. Is this the javac task that doesn't do anything? If so, does srcdir point to the correct directory, i.e. is there a Java file named ${build.classes}/com/gerrard/equities/reconciliationserver/utils/JVMFunctions.java? If this task compiles more than just the two classes you want to compile, do they depend on other classes (that have not been included)? If so, javac (the JDK one, not the task) is going to compile them as well and there is nothing you can do to prevent it - well, you could, but let's first see whether this is the problem. Stefan