Packaging WAR, JAR modules into EAR using Maven Build Tool

Introduction Here you will see the process of packaging WAR, JAR modules into EAR file. EAR, also known as, Enterprise Archive, in which all files (.jar and .war) are packaged as JAR file with .ear (enterprise archive) extension and deployed into Application Server.

Deploy both war and jar files into Nexus using maven in Jenkins

Introduction This tutorial will show you how to deploy both war and jar file from an web application using maven in Jenkins. By default when we build the web project in Jenkins then the war file gets uploaded into nexus repository but not the jar file. Sometimes we need to upload both war and jar files for an web application…

Create Both War And Jar Files Using Maven

JAR/WAR This tutorial will show you how to create both war and jar files in a web application using maven build tool. Sometimes you may need to create both war and jar files for a web application using maven build tool because some other standalone project needs to include the jar file for this web application. For example you can…