On Tue, 11 Apr 2006, Christian Sauer wrote:

> Hi,
>
> i've built an ear file and wondered why the manifest file
> did not contain the "classpath" entry ...

Because you don't need one.

>
> Does anyone know how I can get Maven to generate that entry?

If you must have one, for instance to support a J2EE implementation that
does not conform to the standards, use this:

<plugin>
  <artifactId>maven-ear-plugin</artifactId>
  <configuration>
    <archive>
      <manifest>
        <addClasspath>true</addClasspath>
      </manifest>
    </archive>
  </configuration>
</plugin>

-- Kenney

>
> Cheers,
> Chris
> --
> Giniality AG - Christian Sauer; Steinenberg 21, CH-4051 Basel
> P: +41 61 226 99 66 - F: +41 61 226 99 69 - M: +41 79 828 9416;
> E-Mail: [EMAIL PROTECTED]; WWW: http://www.giniality.com
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

--
Kenney Westerhof
http://www.neonics.com
GPG public key: http://www.gods.nl/~forge/kenneyw.key

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to