Tool

Understanding POM

Reading Time: 4 minutes What is POM? The core element of any maven project. Maven Project consist of at least one configuration file called pom.xml. Which stands for the abbreviation Project Object Model. The pom.xml will always be located in the root directory of any maven project. Inside the pom.xml contains all the necessary information about the configuration details. dependency included and plug-ins included in the project. Why do Continue Reading

Generating your own Javadocs for your Package

Reading Time: 4 minutes Documenting whatever work you are doing as a developer or tester is always a good idea hence we are going to learn about Generating JavaDocs for your own package. Documentation can easily describe info about which method/class/entity to use and when. Hence, a reliable documentation is a must for a developer. Just think if you are not aware of a certain language then how difficult Continue Reading