RE: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Borrill, Chris
Hi Rob, I have written a task (based on the SQL task) for loading from file and then compiling Oracle PL/SQL stored procedures and packages. One thing I found I had to do was disable escape processing for the load with: statement = conn.createStatement

RE: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Anderson, Rob H - VSCM
sqlplus to load the code as follows: sqlplus user/pass@database @package_body.sql -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 9:24 AM To: Ant Users List Subject: Re: Writing a DB2 Java Stored Procedure compiling task Deploying

Re: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Antoine Levy-Lambert
Deploying stored proc should be possible with the ant SQL task. Antoine - Original Message - From: "Anderson, Rob H - VSCM" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Tuesday, January 07, 2003 6:00 PM Subject: RE: Writing

RE: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Anderson, Rob H - VSCM
:44 AM To: Ant Users List Subject: RE: Writing a DB2 Java Stored Procedure compiling task Hi Kola, I'm aware of the sql task but what I meant was a task to compile a SQLJ JAVA STORED PROCEDURE Here is an example Java stored proc: package javastoredproc; #sql iterator MyIter ( int, int ); p

RE: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Hien Q. Nguyen
de for the book for example of ??? http://www.amazon.com/exec/obidos/tg/detail/-/047120708X/104-2318894-5881526 ?vi=glance KolaF > -Original Message- > From: "Antoine Levy-Lambert" > @MCGRAW-HILL > Sent: Tuesday, January 07, 2003 8:11 AM > To: Ant Users List

RE: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Fajimolu, Kola
t; Subject: Re: Writing a DB2 Java Stored Procedure compiling task > > > There is a SQL task in ant, which requires a JDBC driver. If you are using > a > JDBC driver for DB2, and > the JDBC driver supports the creation of stored procedures, you can create > your st

Re: Writing a DB2 Java Stored Procedure compiling task

2003-01-07 Thread Antoine Levy-Lambert
> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 07, 2003 5:58 AM Subject: Writing a DB2 Java Stored Procedure compiling task > Hi, > > I want to use Ant to build our back end DB2 Java > Stored Procedures and I've searched the list and > looked around the website but

Writing a DB2 Java Stored Procedure compiling task

2003-01-06 Thread Hien Q. Nguyen
Hi, I want to use Ant to build our back end DB2 Java Stored Procedures and I've searched the list and looked around the website but couldn't find anything. I'm wondering if anybody has done/wanted such a task. If not I'd like to write one and share with the community. Any comments, suggestions

Re: Trouble compiling native code using exec

2002-12-08 Thread Steve Loughran
- Original Message - From: "Jason Rizer" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Sunday, December 08, 2002 12:59 Subject: Trouble compiling native code using exec > value="${msdev.dir}\vc98\Lib;${msdev.dir}\vc9

Trouble compiling native code using exec

2002-12-08 Thread Jason Rizer
;m trying to do the compile using the exec task as follows: When I run ant I get the following error: [exec] Compiling resources... [exec] Compiling... [exec] Error spawning cl.exe [exec] NativeDriver.dll - 1 error(

Re: Compiling only updated files

2002-11-10 Thread Diane Holt
--- Peter Lee <[EMAIL PROTECTED]> wrote: > I want to compile only those source java files that have been > updated. This would savesome time. Is it possible to do it in the > compile task? That's what does. If it's recompiling all your files everytime through, see the FAQ on "Why do all my file

Compiling only updated files

2002-11-09 Thread Peter Lee
I want to compile only those source java files that have been updated. This would savesome time. Is it possible to do it in the compile task? Thanks -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Compiling 2 files

2002-11-01 Thread Vijay Gupta
cc: Subject: Re: Compiling 2 files 10/31/02 08:34 PM Please respond

Re: Compiling 2 files

2002-10-31 Thread Conor MacNeill
Vijay Gupta wrote: Hi all, I have some problem with ant, I am trying to compile files. My folder has 46 files in sub directories, but when i run ant it says compiling 14 files.. moreover it gives compilation errors saying can not resolve symbol in some files when I cross checked the files they

Compiling 2 files

2002-10-31 Thread Vijay Gupta
Oops...forfot to attach the build file.. In addition to that problem...if i delete those files which are giving error, it says compiling 6 files but when i see .war file all the .class files will be there (See attached file: build.xml) Hi all, I have some problem with ant, I am trying to

Compiling 2 files

2002-10-31 Thread Vijay Gupta
Hi all, I have some problem with ant, I am trying to compile files. My folder has 46 files in sub directories, but when i run ant it says compiling 14 files.. moreover it gives compilation errors saying can not resolve symbol in some files when I cross checked the files they seems to be correct

RE: Compiling C under ANT

2002-10-29 Thread Dominique Devienne
riginal Message- From: sharon Stanfill [mailto:sharons@;ll.mit.edu] Sent: Tuesday, October 29, 2002 9:31 AM To: Ant Users List Subject: Compiling C under ANT Hi All, I'm new to ANT, and will be devising a config control system based on PCs, for Java, Matlab, and C code. A given

Compiling C under ANT

2002-10-29 Thread sharon Stanfill
Hi All, I'm new to ANT, and will be devising a config control system based on PCs, for Java, Matlab, and C code. A given module will have all three languages. I can see that ANT handles Java and Matlab easily - any suggestions for C? We are under RCS (may be migrating to CVS) so any suggestions/w

Re: (javac task): Compiling depedencies doesn't work...

2002-10-28 Thread Jakub . Valenta
be enough for me. br, jakub Mika Moilanen <[EMAIL PROTECTED]> 10/28/2002 11:17 AM Please respond to "Ant Users List" To: [EMAIL PROTECTED] cc: Subject:(javac task): Compiling depedencies doesn't work... Hello! This is a v

(javac task): Compiling depedencies doesn't work...

2002-10-28 Thread Mika Moilanen
Hello! This is a very novice question, since I've been playing with Ant only few days now. I'm interested to find out how Ant works, what is the fundamendal relationship with javac? In order to find this out, I set up a dummy project with two classes: com.foo.Foo com.bar.Bar Fo

Re: Compiling the FTP Optional Task

2002-09-25 Thread Ryan Cuprak
Figured it out. I think I'll go stick my head in the sand. The ant script which copied over the newly built ant libraries wasn't copying the optional.jar over - I had cut and pasted some code (in a properties file)- messing it up. Ant.jar was copied over but not optional.jar. I think it would b

Re: Compiling the FTP Optional Task

2002-09-25 Thread Matt Benson
Did you add the netcomponents jar to $ANT_HOME/lib ? -Matt --- Ryan Cuprak <[EMAIL PROTECTED]> wrote: > > Hello, > I am trying to get the optional ftp task to > compile. I have downloaded the > netcomponents package and added it to the classpath > but I am not certain why > it isn't being dete

Compiling the FTP Optional Task

2002-09-25 Thread Ryan Cuprak
Hello, I am trying to get the optional ftp task to compile. I have downloaded the netcomponents package and added it to the classpath but I am not certain why it isn't being detected. How do I "echo" the classpathref to see what is going on? Thanks, Ryan Cuprak -- To unsubscribe, e-mail:

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Steve Loughran
- Original Message - From: "Ian Zabel" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 05, 2002 2:08 PM Subject: Re: "Unclosed comment" error with jdk1.4.1 while compiling > I am an avid IntelliJ IDEA

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Ian Zabel
will attempt to report it to the RC team (not sure how to do that yet). Ian. - Original Message - From: "Paul Christmann" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Thursday, September 05, 2002 4:34 PM

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Ian Zabel
ot;Ant Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 05, 2002 4:13 PM Subject: Re: "Unclosed comment" error with jdk1.4.1 while compiling > > - Original Message - > From: "Ian Zabel" <[EMAIL PROTECTED]> > To: "Ant Users List&

RE: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Paul Christmann
> - Original Message - > From: "Ian Zabel" <[EMAIL PROTECTED]> > > This is just a legacy coding convention that is in about > 300 classes. When > > compiling these classes with jdk1.4.1 RC from the command > line, they all > > compile fine.

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Steve Loughran
- Original Message - From: "Ian Zabel" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 05, 2002 10:04 AM Subject: Re: "Unclosed comment" error with jdk1.4.1 while compiling > I am reasonably sure that

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Ian Zabel
I am reasonably sure that I can compiling with javac, not jikes. And I tried compiling with different parameters, to no avail. Here's some output: .. some properties When running JDK1.4.1RC gives this: init:

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Steve Loughran
- Original Message - From: "Ian Zabel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 05, 2002 9:01 AM Subject: "Unclosed comment" error with jdk1.4.1 while compiling > When I compile our code with the javac task in Ant 1.5

"Unclosed comment" error with jdk1.4.1 while compiling

2002-09-05 Thread Ian Zabel
coding convention that is in about 300 classes. When compiling these classes with jdk1.4.1 RC from the command line, they all compile fine. It's only a problem when compiling through ant, while running on jdk1.4.1 RC. If we run ant with jdk1.4.0, it works fine too. Are there compatibility pro

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-04 Thread George McKinney
- Original Message - From: "Erik Hatcher" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Wednesday, September 04, 2002 4:27 PM Subject: Re: "Unclosed comment" error with jdk1.4.1 while compiling > Zabel, Ian wrote: >

Re: "Unclosed comment" error with jdk1.4.1 while compiling

2002-09-04 Thread Erik Hatcher
} // end OurClass > // end OurClass.java > > > This is just a legacy coding convention that is in about 300 classes. When > compiling these classes with jdk1.4.1 RC from the command line, they all > compile fine. It's only a problem when compiling through ant, while running &

"Unclosed comment" error with jdk1.4.1 while compiling

2002-09-04 Thread Zabel, Ian
coding convention that is in about 300 classes. When compiling these classes with jdk1.4.1 RC from the command line, they all compile fine. It's only a problem when compiling through ant, while running on jdk1.4.1 RC. If we run ant with jdk1.4.0, it works fine too. Are there compatibility pro

RE: Ant stops compiling after there is more than 100 errors

2002-08-19 Thread Dominique Devienne
Nope. This is built-in behavior of Sun's Javac compiler, and Ant cannot do anything about it. --DD -Original Message- From: Agrawal, Rajeev [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 3:17 PM To: '[EMAIL PROTECTED]' Subject: Ant stops compiling after there i

Ant stops compiling after there is more than 100 errors

2002-08-19 Thread Agrawal, Rajeev
Hi Ant currently stops compiling after it gets 100 errors. However, I want it to keep compiling. Is there any property I can set? Cheers Rajeev Agrawal If you have received this e-mail in error or wish to read our e-mail disclaimer statement and monitoring policy, please refer to http

RE: Out of memory issues when compiling

2002-08-13 Thread Brian Robinson
] Sent: Tuesday, July 30, 2002 3:46 PM To: '[EMAIL PROTECTED]' Subject: Out of memory issues when compiling I am compiling a fairly large project containing anywhere from 1500 to 2500 source files and I am constantly getting the compiler has ran out memory error. I have tried using the

Re: Compiling jsp with ant script

2002-08-13 Thread Steve Loughran
- Original Message - From: "Milind Nirgun" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Tuesday, August 13, 2002 9:08 AM Subject: RE: Compiling jsp with ant script >You can use the task which would require Jasper. Look at Ant do

RE: Compiling jsp with ant script

2002-08-13 Thread Milind Nirgun
mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 13, 2002 5:28 AM > To: Ant Users List > Subject: Compiling jsp with ant script > > > > Hi, > > How do I compile jsp using ant script ? > > I am using SUN ONE application server 7.0. > > Your

Compiling jsp with ant script

2002-08-13 Thread amol desai
Hi, How do I compile jsp using ant script ? I am using SUN ONE application server 7.0. Your help will be appreciated Thanks, -Amol __ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com -- To unsubscribe, e-mail:

RE: Out of memory issues when compiling

2002-08-11 Thread Diane Holt
--- Brian Robinson <[EMAIL PROTECTED]> wrote: > I resolved my out of memory issue by adding "-Xmx256m" in the shell > script for ant when it is starting org.apache.tools.ant.Main: > $JAVACMD -classpath "$LOCALCLASSPATH" -Dant.home="${ANT_HOME}" > $ANT_OPTS -Xmx256m org.apache.tools.ant.Main "

RE: Out of memory issues when compiling

2002-08-11 Thread Brian Robinson
I resolved my out of memory issue by adding "-Xmx256m" in the shell script for ant when it is starting org.apache.tools.ant.Main: $JAVACMD -classpath "$LOCALCLASSPATH" -Dant.home="${ANT_HOME}" $ANT_OPTS -Xmx256m org.apache.tools.ant.Main "$@" The clue that there may be multiple copies of An

RE: Out of memory issues when compiling

2002-08-10 Thread Prasanna Shetty
use this attribute compiler="modern" with in the javac tag. prasanna -Original Message- From: Brian Robinson [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 10, 2002 8:15 AM To: [EMAIL PROTECTED] Subject: RE: Out of memory issues when compiling >I'm getting the s

RE: Out of memory issues when compiling

2002-08-10 Thread Brian Robinson
emory side, and development easier >overall (separating the layers into there own sub-project). > >The challenge is to go from a monolithic to a layered architecture... --DD > >-Original Message- >From: Ed Mangual [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, July 30, 2002 3:46 PM

Re: compiling jsp with ant

2002-08-03 Thread Steve Loughran
August 02, 2002 09:54 Subject: compiling jsp with ant I´m trying to compile jsp files with ant, using de jspc tag. In the end of the compilation occurs the follow error: [java] The ' characters around the executable and arguments are [java] not part of the command. java.io.IOExcepti

Re: Exception while compiling

2002-08-03 Thread Kendall Collett
PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 02, 2002 12:37 Subject: Re: Exception while compiling > I got the same error. Here are some other details: > 1. It occurred after I increased the number of files being compiled (from > 1800 to >2000) > 2. Right after i

RE: compiling jsp with ant

2002-08-02 Thread Yaman
cript.. HTH -Original Message- From: Eduardo B. Santilli - SICREDI Serviços [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 10:54 PM To: [EMAIL PROTECTED] Subject: compiling jsp with ant I´m trying to compile jsp files with ant, using de jspc tag. In the end o

Re: Exception while compiling

2002-08-02 Thread Peter . V . Wall
might be something that we can't do anything about. "Buonassisi, Vincent" <[EMAIL PROTECTED]> 08/02/2002 09:56 AM Please respond to "Ant Users List" To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject:

Exception while compiling

2002-08-02 Thread Buonassisi, Vincent
Hi, While building several targets I get the error listed below. If i build the targets one at a time this does not happen. Does anyone know the reason why this happens? [javac] An exception has occurred in the compiler (1.3.1_01). Please file a bug at the Java Developer Connection (http:/

compiling jsp with ant

2002-08-02 Thread Eduardo B. Santilli - SICREDI Serviços
I´m trying to compile jsp files with ant, using de jspc tag. In the end of the compilation occurs the follow error: [java] The ' characters around the executable and arguments are [java] not part of the command. java.io.IOException: CreateProcess Some one knows what´s happen? This occu

RE: Out of memory issues when compiling

2002-07-30 Thread Ed Mangual
Thanks. I'll give this a try. -Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 5:15 PM To: 'Ant Users List' Subject: RE: Out of memory issues when compiling Seems like you covered most bases... I'd try with:

RE: Out of memory issues when compiling

2002-07-30 Thread Dominique Devienne
rating the layers into there own sub-project). The challenge is to go from a monolithic to a layered architecture... --DD -Original Message- From: Ed Mangual [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 3:46 PM To: '[EMAIL PROTECTED]' Subject: Out of memory issues

Out of memory issues when compiling

2002-07-30 Thread Ed Mangual
I am compiling a fairly large project containing anywhere from 1500 to 2500 source files and I am constantly getting the compiler has ran out memory error. I have tried using the "set ANT_OPTS=-Xmx512m" in the ant batch file, forking the javac processes and even s

Re: Problems With compiling Files that I generate with jspc

2002-06-24 Thread Steve Loughran
MAIL PROTECTED]> Sent: Monday, June 24, 2002 6:40 AM Subject: Problems With compiling Files that I generate with jspc Hello, I convert some Jsp files in .java (more or less 800 files) using JSPC. When i try to compile generated .java I always receive same response: I received onl

RE: Problems With compiling Files that I generate with jspc

2002-06-24 Thread Burns, Chris
larger numbers. Your system should work when you get enough memory to hold your app. -Original Message- From: Rodrigo Pinheiro [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 8:41 AM To: Ant Users List Subject: Problems With compiling Files that I generate with jspc Hello, I

Problems With compiling Files that I generate with jspc

2002-06-24 Thread Rodrigo Pinheiro
Hello, I convert some Jsp files in .java (more or less 800 files) using JSPC. When i try to compile generated .java I always receive same response: I received only 3 or 4 errors before this erro appears [javac] The system is out of resources. [javac] Consult the following

Re: Compiling for JDK 1.1.8

2002-06-21 Thread Stefan Bodewig
On Thu, 20 Jun 2002, Jeff Larsen <[EMAIL PROTECTED]> wrote: > I'm running Ant 1.4.1 under JDK 1.3.1. I need to > compile some projects to be run under JDK 1.1.8. Try Ant 1.5beta instead - at least the forking case should work fine. Stefan -- To unsubscribe, e-mail:

Compiling from subdirs

2002-06-20 Thread Diane Holt
I sent this to Bela privately, but thought maybe someone else might find it useful. See: http://marc.theaimsgroup.com/?l=ant-dev&m=102444112702134&w=2 for what he was looking to do. (Nutshell: Compile from a subdir only those files in the current directory on down.)

Re: Compiling for JDK 1.1.8

2002-06-20 Thread Jeff Larsen
n" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Thursday, June 20, 2002 12:09 PM Subject: RE: Compiling for JDK 1.1.8 > Are you specifying the {bootclasspath} and property as well? > You need to reference the bootclasspath and the targe

RE: Compiling for JDK 1.1.8

2002-06-20 Thread Ed Mack
I have been getting the same message, since switching from 1.4.1 to 1.5, and I do have bootclasspath set: mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 10:12 AM To: Ant Users List Subject: RE: Compiling for JDK 1.1.8 Sorry, its been a hard day, let me rephrase that: "Ar

RE: Compiling for JDK 1.1.8

2002-06-20 Thread Geoff Meakin
Sorry, its been a hard day, let me rephrase that: "Are you specifying the {bootclasspath} and {target} attributes as well?" -Geoff -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Compiling for JDK 1.1.8

2002-06-20 Thread Geoff Meakin
I use mailto:[EMAIL PROTECTED]] Sent: 20 June 2002 05:42 PM To: [EMAIL PROTECTED] Subject: Compiling for JDK 1.1.8 I'm running Ant 1.4.1 under JDK 1.3.1. I need to compile some projects to be run under JDK 1.1.8. See the buld.xml below... Ant is *NOT* properly compiling with JDK 1.1. I can

Re: Compiling for JDK 1.1.8

2002-06-20 Thread Jeff Larsen
ne 20, 2002 11:43 AM Subject: Re: Compiling for JDK 1.1.8 > tried forking to see if that would work? > a suggestion offhand... > > > On Thu, 20 Jun 2002 10:42:23 Jeff Larsen wrote: > > I'm running Ant 1.4.1 under JDK 1.3.1. I need to > > compile some pr

Re: Compiling for JDK 1.1.8

2002-06-20 Thread Ultra Funkular
tried forking to see if that would work? a suggestion offhand... On Thu, 20 Jun 2002 10:42:23 Jeff Larsen wrote: > I'm running Ant 1.4.1 under JDK 1.3.1. I need to > compile some projects to be run under JDK 1.1.8. > > See the buld.xml below... > > Ant is *NOT* properly

Compiling for JDK 1.1.8

2002-06-20 Thread Jeff Larsen
I'm running Ant 1.4.1 under JDK 1.3.1. I need to compile some projects to be run under JDK 1.1.8. See the buld.xml below... Ant is *NOT* properly compiling with JDK 1.1. I can tell this two ways. During the compile, I get deprecation warnings for things that were not deprecated until 1.2

RE: Entire source compiling EVERY time

2002-06-03 Thread Robert Priest
riday, May 31, 2002 6:29 PM To: 'Ant Users List' Subject: RE: Entire source compiling EVERY time It's the same problem as before it looks like... try: --DD -Original Message- From: Robert Priest [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 5:15 PM To: &#x

RE: Entire source compiling EVERY time

2002-05-31 Thread Dominique Devienne
It's the same problem as before it looks like... try: --DD -Original Message- From: Robert Priest [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 5:15 PM To: 'Ant Users List' Subject: RE: Entire source compiling EVERY time Okay, i one more about this topic. T

RE: Entire source compiling EVERY time

2002-05-31 Thread Robert Priest
, May 22, 2002 2:56 PM To: 'Ant Users List' Subject: RE: Entire source compiling EVERY time Thanks Jon. I think I understand now.But I have another question (more about style I guess): I have a file under "com\projectwise\web\client\base" called PWClientStarter.java. That is st

RE: Ant 1.5beta1 - javac task - compiling classes it shouldn't

2002-05-27 Thread Giles Paterson
> -Original Message- > From: Conor MacNeill [mailto:[EMAIL PROTECTED]] > Sent: 27 May 2002 12:04 > To: Ant Users List > Subject: Re: Ant 1.5beta1 - javac task - compiling classes it shouldn't > > Giles, > > javac (the underlying compiler - not the task)

Re: Ant 1.5beta1 - javac task - compiling classes it shouldn't

2002-05-27 Thread Conor MacNeill
Giles, javac (the underlying compiler - not the task) will pick up classes you have not explicitly specified if it requires them to satisfy a dependency in the code you are compiling or it detects that such classes are out of date. One thing to try is to move the offending Java classes

Ant 1.5beta1 - javac task - compiling classes it shouldn't

2002-05-27 Thread Giles Paterson
The problem I am having is that ant is compiling classes it shouldn't (i.e. they are not specified in the javac task's includes). The extra classes aren't dependencies as when I compile using my IDE, only the expected classes are compiled. Even more curiously, the output of 

Re: Entire source compiling EVERY time

2002-05-22 Thread Xeno
> > Is that the most elegant way of doing this, or is there a better way? > > > > -Original Message- > From: Jon Skeet [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 22, 2002 1:40 PM > To: Ant Users List > Subject: RE: Entire source compiling EVERY time > >

RE: Entire source compiling EVERY time

2002-05-22 Thread Dominique Devienne
hes in all your ANT build files ;-) --DD -Original Message- From: Robert Priest [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:56 PM To: 'Ant Users List' Subject: RE: Entire source compiling EVERY time Thanks Jon. I think I understand now.But I have another question (mo

RE: Entire source compiling EVERY time

2002-05-22 Thread Robert Priest
Original Message- From: Jon Skeet [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:40 PM To: Ant Users List Subject: RE: Entire source compiling EVERY time > Here is my what my target looks like: > > > destdir="${WEB_OUT}" /> > destdir="${WEB_

RE: Entire source compiling EVERY time

2002-05-22 Thread Jon Skeet
> Here is my what my target looks like: > > > destdir="${WEB_OUT}" /> > destdir="${WEB_OUT}" /> > destdir="${WEB_OUT}" > excludes="pwviewer\**" > /> > That's your problem - you should be using: and using a filter to get only those directories if that's all you

Entire source compiling EVERY time

2002-05-22 Thread Robert Priest
everytime: compile: [javac] Compiling 53 source files to D:\pw\Development\output\build\dms\webo ut [javac] Compiling 51 source files to D:\pw\Development\output\build\dms\webo ut [javac] Note: D:\pw\Development\src\dms\web\src\java\com\projectwise\web\ser ver\lite\xmlgenerator

Re: Need working ant example of JspC compiling JSPs for tomcat

2002-05-13 Thread Steve Loughran
- Original Message - From: "Eric Gilbertson" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Monday, May 13, 2002 9:52 AM Subject: Need working ant example of JspC compiling JSPs for tomcat > Hello Ant Experts: > > Sorry for t

Need working ant example of JspC compiling JSPs for tomcat

2002-05-13 Thread Eric Gilbertson
Hello Ant Experts: Sorry for the simple question, but can someone point me to a working example of ant invoking JspC in order to compile JSPs for Tomcat? I have a standard servlet application that running under Tomcat which I would like to modify to use precompiled JSPs. Using the examples found

Re: multiple JVM compiling??

2002-05-13 Thread Stefan Bodewig
On Mon, 13 May 2002, Geoff Meakin <[EMAIL PROTECTED]> wrote: > Does anyone know of a good way to do multiple compiling in a single > script? I'll assume Ant 1.5beta, beta2 will have this snippet in its documentation: >> If you want to run the javac compiler of a diffe

Re: multiple JVM compiling??

2002-05-13 Thread Gordon Tyler
One method is to run Ant using JDK 1.4 and use the cross-compiling options of javac to make the JDK 1.4 compiler produce 1.2 and 1.3 compatible classes. For example: ... your classpath and includes ... Where java13.home is a property defined to point to your JDK

multiple JVM compiling??

2002-05-13 Thread Geoff Meakin
Hi, Does anyone know of a good way to do multiple compiling in a single script? By this I mean, I have some source which I need to compile using JDK1.2.2, some source which I need to compile using JDK1.3 and some source which I need to compile using JDK1.4- but in the same script, so I dont want

Re: compiling again

2002-04-24 Thread step1b
Quoting Stefan Bodewig ([EMAIL PROTECTED]): > On Wed, 24 Apr 2002, <[EMAIL PROTECTED]> wrote: > > > I would like the javac task to be verbose and list out the name of > > every source file it compiles. Is this possible? > > ant -verbose should do the trick. > thanks, that was helpful. srcdir a

Re: compiling again

2002-04-24 Thread Stefan Bodewig
On Wed, 24 Apr 2002, <[EMAIL PROTECTED]> wrote: > I would like the javac task to be verbose and list out the name of > every source file it compiles. Is this possible? ant -verbose should do the trick. Stefan -- To unsubsc

Re: compiling again

2002-04-24 Thread step1b
Quoting Stefan Bodewig ([EMAIL PROTECTED]): > On Wed, 24 Apr 2002, <[EMAIL PROTECTED]> wrote: > > > without making any changes to my java sources if I run ant again > > it still compiles all the files. what could be the problem? > > I h

Re: compiling again

2002-04-24 Thread Stefan Bodewig
On Wed, 24 Apr 2002, <[EMAIL PROTECTED]> wrote: > without making any changes to my java sources if I run ant again > it still compiles all the files. what could be the problem? -- To unsubscribe, e-mail: For

compiling again

2002-04-23 Thread step1b
hi without making any changes to my java sources if I run ant again it still compiles all the files. what could be the problem? Further I do not understand how ant identifies whether to execute a target or not. In Makefile we used to specify a.out: myfile.c cc myfile.c but in build.xml,

RE: Task for ejb compiling for websphere

2002-04-18 Thread Les Hughes
t bother with jetace, it doesn't really give you much. Les > -Original Message- > From: Mason Taube [mailto:[EMAIL PROTECTED]] > Sent: 17 April 2002 21:25 > To: Ant Users List > Subject: Re: Task for ejb compiling for websphere > > > > > --- subhendu

Re: Task for ejb compiling for websphere

2002-04-17 Thread Mason Taube
> --- subhendukumar mohanty <[EMAIL PROTECTED]> > wrote: > > I am developing a J2ee Application having > websphere 3.5.5 Application > > server. I uses Ant for build process. But i can > not compile ejbc through > > Ant. So is there any way to compile ejb through > build . The difficulty is gene

Re: Task for ejb compiling for websphere

2002-04-17 Thread Diane Holt
--- subhendukumar mohanty <[EMAIL PROTECTED]> wrote: > I am developing a J2ee Application having websphere 3.5.5 Application > server. I uses Ant for build process. But i can not compile ejbc through > Ant. So is there any way to compile ejb through build . How are you doing things outside of Ant

Re: Compiling multiple rmic

2002-04-07 Thread Adam Murdoch
On Sun, 7 Apr 2002 20:22, Rahamim, Zvi (Zvi) wrote: > Hi! > I want to compile classes using rmic > The rmic task can compile only one class. > How can I compile some classes seperated by ',' ? > The task can compile more than one class. You use the 'base' attribute, combined with attributes li

Compiling multiple rmic

2002-04-07 Thread Rahamim, Zvi (Zvi)
Hi! I want to compile classes using rmic The rmic task can compile only one class. How can I compile some classes seperated by ',' ? Thanks! -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: classpath issue when compiling jsps

2002-03-25 Thread Kailash . Subramanian
That's it. It worked. Thanks a lot, Diane. Thx Kailash From: Diane Holt <[EMAIL PROTECTED]> on 03/25/2002 01:37 AM Please respond to Ant Users List <[EMAIL PROTECTED]> To: Ant Users List <[EMAIL PROTECTED]> cc: Subject: Re: classpath issue when compiling jsp

Re: classpath issue when compiling jsps

2002-03-25 Thread Erik Hatcher
Oh, good catch Diane. Sorry I missed that one. Erik - Original Message - From: "Diane Holt" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Monday, March 25, 2002 1:37 AM Subject: Re: classpath issue when compiling jsps

Re: classpath issue when compiling jsps

2002-03-24 Thread Diane Holt
--- [EMAIL PROTECTED] wrote: > [apply] Exception in thread "main" java.lang.NoClassDefFoundError: > weblogic/jspc > [apply] Result: 1 > > I would appreciate any insight into this. Thanks a bunch Erik for your > patience and help. Just a guess, but maybe you need to pass 'java' the classpa

Re: classpath issue when compiling jsps

2002-03-24 Thread Kailash . Subramanian
ROTECTED]> To: Ant Users List <[EMAIL PROTECTED]> cc: Subject: Re: classpath issue when compiling jsps Maybe only the JAVA_HOME environment variable was needed? Did you try that by itself with the -cp command-line switch? Other than that, dunno. Erik - Original Message -

Re: classpath issue when compiling jsps

2002-03-24 Thread Erik Hatcher
arch 24, 2002 10:26 PM Subject: Re: classpath issue when compiling jsps > > I set the classpath as environment variable and it worked like charm. The > code I used is > > > > > > > > > > Can anybody help me und

Re: classpath issue when compiling jsps

2002-03-24 Thread Kailash . Subramanian
I set the classpath as environment variable and it worked like charm. The code I used is Can anybody help me understand why if I call the CLASSPATH in the arg line using the property name ${cp} it does not work as against setting the CLASSPATH as

Re: classpath issue when compiling jsps

2002-03-24 Thread Erik Hatcher
RTFM: subelement of . Erik - Original Message - From: <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Sunday, March 24, 2002 9:20 PM Subject: Re: classpath issue when compiling jsps > > Thanks a lot Erik. Now, I can exactly see wh

Re: classpath issue when compiling jsps

2002-03-24 Thread Kailash . Subramanian
t: Re: classpath issue when compiling jsps Try -debug mode it might yield more explicit details. Erik - Original Message - From: <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Sunday, March 24, 2002 8:04 PM Subject: classpath issue when

Re: classpath issue when compiling jsps

2002-03-24 Thread stephan beal
On Monday 25 March 2002 02:04 am, [EMAIL PROTECTED] wrote: >       dir="/view/vobadm_ECL_HIBERNIA/ebppvobstore/vobs/HIBERNIA/com/alltel/ebusin >ess/pay/adjustment/pages/" includes="**/*.jsp/**" /> Are you sure you want an absolute path there? - stephan Generic Universal Computer Guy [EMAIL P

  1   2   3   >