Enabling assert

2006-09-20 Thread Bala Paranj
How do I enable the assert in my build script? I am getting the error message "assert is a keyword, and may not be used as an identifier" when I compile the file with assert statement. TIA. - To unsubscribe, e-mail: [EMAIL PROTE

Properties File

2006-08-15 Thread Bala Paranj
I have a properties file under config directory at the same level as the packages containing source. The Ant script currently packages everything including the properties file used by the application. I want the user of this script to be able to provide the values of the properties when the sc

Ant and SSL

2006-08-08 Thread Bala Paranj
I have the following section in my build.xml: I can run my client from within Eclipse without any problems. But when I run it using the Ant script I get the following er

Re: Package Dependencies

2006-08-08 Thread Bala Paranj
s like IVY or even program > > stuff on your own. But also, like you stated, you can migrate to Maven. This > > depends on the needs in your project. > > > > R, > > > > Markus > > > > > > Original-Nachricht > > Datum:

Package Dependencies

2006-08-07 Thread Bala Paranj
I have dependencies between packages with some having circular dependency. Is it easier to use Maven instead of Ant to create the jars and war files? TIA. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Building Ant from Source

2006-07-18 Thread Bala Paranj
How can I build the ant from the latest source? TIA. PS: Sorry, I posted this question earlier in another thread. For some reason, it doesn't seem to go through. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

Re: Specifying Jar files to execute program

2006-07-18 Thread Bala Paranj
Thank you Matt. I downloaded the latest snapshot of ant (ant_20060717163050.tar.gz 17-Jul-2006 09:31). I have extracted the zip file on the local hard drive. Is there a build.xml to compile it? ;) --- Matt Benson <[EMAIL PROTECTED]> wrote: > --- Bala Paranj <[EMAIL PROTE

Re: Specifying Jar files to execute program

2006-07-18 Thread Bala Paranj
to more > strongly indicate that. > > Either use an in-Manifest Class-Path: attribute, or use 'classname' > instead of 'jar'. --DD > > On 7/18/06, Bala Paranj <[

Specifying Jar files to execute program

2006-07-18 Thread Bala Paranj
I have the following target in my ant script: The abc.jar and xyz.zip are in the same directory (dist) and so is the myClient.jar file that I want to run. But I get the java.la

Manifest doesn't support the "file" attribute

2006-07-17 Thread Bala Paranj
I am using the following ant section to generate the manifest file so that I can run the program by using the generated jar file.

common jar

2006-07-14 Thread Bala Paranj
I have a package consisting of model classes that is shared between the client and server projects. I want to create a common.jar file that is shared by both the client and server ant scripts. How can I compile the com.xyz.model package only and exclude the compilation of other packages? I wan