How to exclude properties file from the Jar file
  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.      Solution : You can achieve the above task by using   maven-jar-plugin  as follows :        < plugin >       < groupId > org.apache.maven.plugins </ groupId >       < artifactId > maven-jar-plugin </ artifactId >       < version > 2.3 </ version >       < configuration >           < excludes >               < exclude > **/otp.properties </ exclude >           </ excludes >     ...