its pretty easy really

here is example of the war plugin automatically generating the classpath..

<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>


the same holds true for the others as well (as far as I have found)

cheers,
jesse

On 11/5/05, Thomas Phan <[EMAIL PROTECTED]> wrote:
>
> Dear all,
>
> How many I do something like below:
>
> <properties>
> <war.manifest.classpath>true</war.manifest.classpath>
> <war.bundle>true</war.bundle>
> </properties>
>
> Or
>
> <properties>
> <ejb.manifest.classpath>true</ejb.manifest.classpath>
> <ejb.bundle>true</ejb.bundle>
> </properties>
>
> In Maven 2?
>
> Thanks
>
> Thomas
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
jesse mcconnell

Reply via email to