Hi,

you have to use the <exclude> tag.

Take a look here:

http://maven.apache.org/plugins/maven-jar-plugin/jar-mojo.html

Regards.

I am Who i am wrote:
Hi All,

How to remove maven related files like maven folder / pom.xml /
pom.properties files from the jar file being created, i have the following
in my pom, but still seeing the maven directory with pom / .xml/.properties
under META-INF directory, my jar plugin version is 2.2
<build>
     <plugins>
                <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-jar-plugin</artifactId>
                        <executions>
                                <execution>
                                        <id>CUSTOM-MANIFEST</id>
                                        <goals>
                                                <goal>jar</goal>
                                        </goals>
                                        <configuration>
                                                <archive>

<manifestFile>${basedir}/../wsear/META-INF/MANIFEST.MF</manifestFile>
<addMavenDescriptor>false</addMavenDescriptor>
                                                </archive>
                                        </configuration>
                                </execution>
                        </executions>
                </plugin>
       </plugins>
   </build>


Please help


--

*Patrizio Munzi*
Product Engineer
Viale Bruno Buozzi, 19 - 00197 Roma (Italy)
tel: +39 06 4543 3540
fax: +39 06 4543 3587
mobile: +39 393 7195 164
mail: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
web: http://www.eris4.com <http://www.eris4.com/>
skype: eris4_munzi <skype:eris4_munzi?add>


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

Reply via email to