franz see wrote:
> 
> However, these plugin documentations are for the latest (snapshot)
> versions of those plugins. Thus, they are not yet released.
> 

Documentations are not released, but manifest configuration is working! 
I tried it by adding the following to my pom:

<project ..>
   ... 
   <build>
           <plugins>
                   <plugin>
                           <artifactId>maven-assembly-plugin</artifactId>
                           <configuration>
                                   
<descriptor>src/main/assembly/standalone.xml</descriptor>
                                   <archive>
                                           <manifest>
                                                   
<mainClass>com.carano.dbfleet.vertrag.xml.Run</mainClass>
                                           </manifest>
                                    </archive>
                           </configuration>
                   </plugin>
           </plugins>   
   </build>
</project>

The main class is added to the MANIFEST.MF after calling mvn package
assembly:assembly.
-- 
View this message in context: 
http://www.nabble.com/Customizing-MANIFEST.MF-with-assembly-plugin-tf2397275.html#a6851807
Sent from the Maven - Users mailing list archive at Nabble.com.


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

Reply via email to