On Tue, Apr 22, 2008 at 11:29 PM, I am Who i am <[EMAIL PROTECTED]> 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
>
What you have done is only removed the files from the execution you added...
additionally you have not attached this execution to any phase... what you
want to do is change the default configuration for the jar plugin in your
pom.xml by doing
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-jar-plugin</artifactId>
> <configuration>
> <archive>
>
> <manifestFile>${basedir}/../wsear/META-INF/MANIFEST.MF</manifestFile>
> <addMavenDescriptor>false</addMavenDescriptor>
> </archive>
> </configuration>
> </plugin>
> </plugins>
> </build>
>