Re: WELCOME to [email protected]

Stefan Bodewig <[email protected]>
Newsgroups gmane.comp.jakarta.ant.user
Message-ID <[email protected]>
On 2015-06-14, aalok singhvi wrote:

> Stephen can you give me an example on update jars where I use ant within
> ant.

<exec> invoking ant.bat is probably the easiest way for starting Ant
from within a buildfile.

Ant's main jar (ant-launcher.jar in 1.7.0 IIRC) doesn't contain a
Main-Class entry in its manifest, when using <java> it would be
something like (untested)

<java fork="true" class="org.apache.tools.ant.Main">
  <classpath>
    <fileset dir="${ant.home}">
      <includes name="lib/*.jar"/>
    </fileset>
  </classpath>
</java>

But the exec approach may be superior as the batch file taskes care of
several installation specific special cases.

Stefan
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.