Skip to main content

Posts

Showing posts with the label Maven

Java Programming Interview Questions and Answers - Java J2EE

 Stayed Informed : Software Development Environment » Java 11 Interview Questions Java 11 is object oriented, interpreted, robust and high level programming language and it was originally developed by Sun Micro systems and released in 1995. Java runs on a various platforms, such as Windows, Mac OS and UNIX... Posted In Java » Java 10 Interview Questions Java 10 is object oriented, interpreted, robust and high level programming language and it was originally developed by Sun Micro systems and released in 1995. Java runs on a various platforms, such as Windows, Mac OS and UNIX... Posted In Java » JSP Interview Questions (J2EE) JSP stands for Java Server Page. JSP are internally converted to Servlet (.class) for processing Java code. JSP is a server side technology which is used for creating dynamic web pages. JSP is an extension of Servlets. JSP comes with SUN’s J2EE platforms. Posted In JSP (Java J2EE) » Servlet Interview Questions (J2EE) Java Servlet is a server side prog...

Maven Interview Questions and Answers

What is Maven? Maven is a software project management tool; manage a project's build and automation tool used primarily for Java projects. Maven is developed by Apache Software Foundation.  Maven is written in Java and Initial release - 13 July 2004, 14 years ago. Maven addresses two aspects of building software - 1.       Firstly, it describes how software is built. 2.       Secondly, it describes its dependencies. Maven provides a complete build life-cycle framework. On executing commands, it will look for POM file in Maven. It will run the command on the resources described in the POM. Maven handles following Activities - 1.       Build 2.       Documentation 3.       Reporting 4.       Dependencies 5.       SCMs 6.       Releases 7.  ...