Maven build is the first think we do after working on daily codebase. I usually perform Maven Build hundreds of time in a day. As you may have noticed, on Crunchify almost all of our projects are …
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.
How to fix Maven build issue in Eclipse? Perform maven-clean-install to fix any Java Dependency Issue
Apache Maven is a Software Project Management tool. Based on the concept of a Project Object Model (POM), Maven can manage a project’s build, reporting and documentation from a central piece of …
Eclipse Cocoa: Version 4.9.0 Released – Hands on
Hurray - Eclipse Cocoa released recently - the big major Eclipse release. There are quite a few under the hood changes happened on Eclipse Cocoa project. Major changes into Eclipse Cocoa …
Read Article about Eclipse Cocoa: Version 4.9.0 Released – Hands on →
Missing Maven settings.xml file for your Eclipse? What if you need two settings.xml files for Work and Personal Workspace?
Are you running multiple Eclipse Environments on your developer workstation? Or on your laptop? I do. Let's consider a scenario with two different Eclipse workspace with different custom maven …
Best Way to Append Data to File in Java – Apache commons.io.FileUtils and java.io.BufferedWriter Approach
What is the best way to append live data to a file in Java? It's very easy for developer to print output or some debug data to Eclipse Console using println(). But what if you would like to save data …
How to Build Java Project including all Dependencies Using Maven? maven-resources, maven-dependency and maven-jar Plugins
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 …
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 get MD5 checksum for any given file in Java? Use commons-codec’s DigestUtils.md5Hex
Tighten the security of your enterprise application is the biggest challenge of any organization. Consider this actual production scenario: You have an application which reads the value from a …
In Java How to Create .jar / .tar.gz / .zip Archive file using maven-assembly-plugin? Maven and Enterprise Project Tutorial
Maven is pretty amazing. With so many plugins it is one of the Best Java Build tool in the market right now. I use it in all of my projects and heavily depends on it. Build possibilities are endless. …