Maven help
Thursday, October 27, 2016
AngularJs Help: Convert datauri to blob - for uploading base64 dat...
AngularJs Help: Convert datauri to blob - for uploading base64 dat...: ```` function dataURItoBlob(dataURI, imgType) { var isSemicolonExist = (dataURI.indexOf(',') >= 0) ? true : false; ...
Wednesday, August 19, 2015
Initiating maven project as dynamic web project
Execute following command
mvn eclipse:eclipse -Dwtpversion=2.0
mvn eclipse:eclipse -Dwtpversion=2.0
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>
<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>
<project>
<build>
<plugins>
and not
<project>
<build>
<pluginmanagement>
<plugins>
Subscribe to:
Comments (Atom)