Problem
Statement :
Suppose your are working on Java Project which uses Maven structure
where your source code is under “/src/main/java”
and all your configuration files like .properties file or xml file
are under “/src/main/resources”
and as a final build your final package is a jar but you want without
few files from your classpath. Be default Maven plugin adds all the
file which comes under resources in jar file.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3</version>
<configuration>
<excludes>
<exclude>**/otp.properties</exclude>
</excludes>
</configuration>
</plugin>
No comments:
Post a Comment