good enough, thanks!
On 7/19/05, Jeffrey E Care <[EMAIL PROTECTED]> wrote:
>
> Only if you are using a "bootstrap" build.xml which then executes the real
> build via the task.
>
> JEC
> --
> Jeffrey E. Care ([EMAIL PROTECTED])
> WebSphere Build SWAT Team Lead
> WebSphere Build Tooling Lead (Pro
Only if you are using a "bootstrap" build.xml which then executes the real
build via the task.
JEC
--
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere Build SWAT Team Lead
WebSphere Build Tooling Lead (Project Mantis)
https://w3.opensource.ibm.com/projects/mantis
Mark Lybarger <[EMAIL PROTECTED]
is it possible to set the ANT_OPTS inside the build.xml? or a property file
perhaps?..
On 7/19/05, Mark Lybarger <[EMAIL PROTECTED]> wrote:
>
> that works nicely, thanks a bundle.
>
> On 7/19/05, Jeffrey E Care <[EMAIL PROTECTED]> wrote:
> >
> > -D options given to the ant script are treated a
that works nicely, thanks a bundle.
On 7/19/05, Jeffrey E Care <[EMAIL PROTECTED]> wrote:
>
> -D options given to the ant script are treated as Ant property
> declarations, not JVM properties. You should be able to use the ANT_OPTS
> environment variable to pass options to the VM.
>
> --
> Jeffr
-D options given to the ant script are treated as Ant property
declarations, not JVM properties. You should be able to use the ANT_OPTS
environment variable to pass options to the VM.
--
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere Build SWAT Team Lead
WebSphere Build Tooling Lead (Project Man
try:
export ANT_OPTS="-Djava.endorsed.dirs=/home/me/tmp"
ant
peter
Mark Lybarger wrote:
i've got an ant build script. our "default" jdk is IBM jdk 1.4.2. our web
app requires a specific version of xalan.jar to build. we can build just
fine on intel box by specifying sun's jvm. when deploying
i've got an ant build script. our "default" jdk is IBM jdk 1.4.2. our web
app requires a specific version of xalan.jar to build. we can build just
fine on intel box by specifying sun's jvm. when deploying to jboss we use
the endorsed.dirs to use our xalan.jar, and can run ok under IBM's jvm. i