How to deploy Maven based war file to Tomcat
In this tutorial, we will show you how to use Maven-Tomcat plugin to package and deploy a WAR file to Tomcat, both in Tomcat 6 and 7. Libraries used :Maven…
Favourite tutorials for developers
In this tutorial, we will show you how to use Maven-Tomcat plugin to package and deploy a WAR file to Tomcat, both in Tomcat 6 and 7. Libraries used :Maven…
This article shows how to install Maven (3.6.3) on macOS Big Sur (version 11.1). We can use Homebrew to install Maven on macOS . If Homebrew failed you or you…
To install Apache Maven on Windows, you just need to download the Maven’s zip file, unzip it to a folder, and configure the Windows environment variables. Tested with :JDK 10,…
In this tutorial, we will show you how to install Apache Maven on Ubuntu. Tested with: Maven 3.5.2, Ubuntu 18.04 . Before the Maven installation, make sure JDK is installed…
To enable proxy access in Maven, define the proxy server detail in {MAVEN_HOME}/conf/settings.xml . Note: There is a high chance your company is set up an HTTP proxy server to…
Not every library is stored in the Maven Central Repository, some libraries are only available in Java.net or JBoss repository (remote repository). This article will show how to add some…
By default, Maven will get project dependencies from Maven Local Repository, if it is not found, Maven will get it from the Maven Central Repository. (1) - Maven Central Repository…
By default, Maven local repository is defaulted to ${user.home}/.m2/repository folder. Unix/Mac OS X – ~/.m2/repository . Windows – C:\Users\{your-username}\.m2\repository . When we compile a Maven project, Maven will download all…
For Java libraries that are not available in the Maven Central or other Maven repositories, we need to install it into our Maven Local repository in order to use it…
In this tutorial, we will show you how to use Maven to manage a Multi-module project containing four modules. Password module – Interface only. Password md5 module – Password module…