How to create your first Jenkins Job

Creating your first Jenkins Job Prerequisite: Jenkins is installed and configured, if you need any help doing so, refer the steps here and here . Navigate to your Jenkins dashboard by browsing http://localhost:8080 Since we are going to create a Maven job, lets first install the maven integration plugin and a couple of other plugins which will help us with reports. Click on "Manage Jenkins" from the left pane and then click on "Manage Plugins" Click on "Available" tab and search for maven in the Filter text box. Select "Maven Integration" from the list of suggestions. Next, you can also select "TestNG Results" and "HTML publisher" plugin which we will use for publishing reports. Optional: You can also select "Green Balls" plugins if you don't like the blue color balls of maven and want to show it in Green color on build success. Once you are done selecting the plug...