Thursday, October 27, 2016

Wednesday, August 19, 2015

Wednesday, January 14, 2015

Not log4j2.xml file get packed with your jar

Add following markups to your pom.xml
<build>
.............
<resources>
        <resource>
            <directory>location(log4j2.xml)</directory>
        </resource>
</resources>
............
</build>

Monday, January 12, 2015

Maven plugin phases not get bind to maven lifecycle phases

Please ensure that your plugin's are under

<project>
 <build>
  <plugins>

and not

<project>
 <build>
<pluginmanagement>
  <plugins>