Are you working on enterprise level Java Project? Using Maven POM.xml file to keep all dependancies up-to date? In your project do you have src folder, resources folder, lib folder, etc? Well, what if …
Maven Archives...
Apache Maven is a Java project management tool which encompasses a project object model aka pom.xml. On Crunchify, we do have more than 100+ Java Tutorials based on Maven. Check it out and become master.
Use “maven-shade-plugin” to Create just 1 Executable jar with all required Dependencies in it for your Java or Spring Project?
Just create one Crunchify.jar file with all dependencies inside it :) Last week I wrote a tutorial on how to use maven-resources-plugin, maven-dependency-plugin & maven-jar-plugin to generate …
How to create New simple Maven Project in Eclipse without archtype – Detailed steps included
Maven and Java is a best combination you could get for your production project in present time. I don't see any other combination which best works. Why Maven? What are the advantages using Maven with …
How to fix Cannot change version of project facet Dynamic Web Module to 3.0 Error in Eclipse
Today while converting Dynamic Web Project to Maven project I got below Error: [crayon-62c3aa0e32974302671530/] What steps I've performed to fix this? In order to fix this first thing I did is to …
Cannot be Read or is Not a Valid ZIP file – How to fix Maven Build Path Error with corrupted .jar file
Yesterday I was setting up my new Macbook Pro 15inch with all my Crunchify Tutorials. I usually use Maven all over the place. Without maven pom.xml file I can't even start working on my project. Maven …
How to Create a .war file using Eclipse Maven Plugin? Apache ‘maven-war-plugin’ usage
Maven is pretty amazing, isn't it? Well - for me at least I love using Maven in my daily Java Development practice. Maven is nothing but a plugin execution framework; all work is done by …
How to Setup/Install Maven Classpath Variable on Windows
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a …
Read Article about How to Setup/Install Maven Classpath Variable on Windows →
How to Find Information On Any Domain Name or Website – Java Whois Example
This is a simple Java Example which uses Apache Commons Net library to pull all Whois data. The WhoisClient class implements the client side of the Internet Whois Protocol defined in RFC 954. To …
Read Article about How to Find Information On Any Domain Name or Website – Java Whois Example →
Spring MVC: How to Declare a Bean in Spring Application?
Declaring a bean In Spring MVC framework, to declare a bean, simply annotate a method with the @Bean annotation. When JavaConfig encounters such a method, it will execute that method and register the …
Read Article about Spring MVC: How to Declare a Bean in Spring Application? →