Introduction to Jenkins and Java CI:
Jenkins can monitor your CM system to detect a check-in of Java source code.
Upon recognition of this change, Jenkins will update a local working directory of code and perform a series of build steps (e.g. "ant clean", "ant compile").
See our Jenkins installation and configuration tutorial.
This tutorial will cover the installation, configuration and use of tools, Jenkins plug-ins and their configuration to support the unique tools used for Java software development.
There are a plethora of Java tools to auto-generate documents, perform unit tests, code reviews and execution code coverage.
We will cover the most prominent tool for each and their integration with Jenkins Continuous Integration (CI).
All builds in this tutorial will be driven by Apache Ant
Other related YoLinux.com Tutorials:
Javadoc:
Jenkins CI should generate web based auto-docs. Use Javadoc to generate HTML documents from source code and its comments.
This is a native plugin which comes with Jenkins thus no installation is required. Configuration is required.
This example shows the basic Unix/Linux start script used to launch Jenkins.
All configuration options in this example are set with environment variables and command line arguments:
- Install "Javadoc":
- Install Javadoc plugin:
- Native plugin. Comes with Jenkins.
- Configure Jenkins System:
In the section "Global Properties" + "Environment Variables", add to your PATH:
- name: JAVA_HOME
- value: /opt/java/latest
- name: PATH
- value: $JAVA_HOME/bin:$PATH
Then select "Save" at bottom of page.
- Jenkins Project Configuration:
- Select your build job from the Jenkins home page.
- Select "Configure" (top left hand side of page)
- At the bottom of page under "Post-build Actions" select the "Publish Javadoc" option.
- Set Javadoc directory: build/javadoc
- Select the "Save" button to save this configuration.
- Configure Build:
- Build Display:
Select "Javadoc" link to view documentation.
Javadoc plugin location: /var/lib/jenkins/plugins/javadoc.hpi
FindBugs:
FindBugs is used to find bad coding practices or potentially unintended behavior in Java code.
This is a list of FindBugs bug descriptions that will be searched.
- Install FindBugs:
- Install Jenkins FindBugs Plugin:
- Select from the Jenkins (start page) + "Manage Jenkins" + "Manage Plugins". Now select the "Available" tab and select the FindBugs Plugin.
- Select the "Install and Restart Jenkins" button.
- FindBugs Plugin Info
- Ant build:
To add support for the Ant FindBugs XML tags, add the findbugs-ant.jar file to the Apache Ant library:
ln -s /opt/findbugs-3.0.0/lib/findbugs-ant.jar /opt/apache-ant-1.8.2/lib/findbugs-ant.jar
Add the following to your Ant build.xml file:
01 | < taskdef name = "findbugs" classname = "edu.umd.cs.findbugs.anttask.FindBugsTask" /> |
06 | < property name = "findbugs.home" value = "/opt/findbugs-3.0.0" /> |
07 | < property name = "build.dir" value = "./build" /> |
08 | < property name = "src.dir" value = "./src" /> |
13 | < target name = "findbugs" depends = "jar" > |
14 | < findbugs home = "${findbugs.home}" output = "xml" outputFile = "findbugs.xml" effort = "max" > |
15 | < auxClasspath path = "/opt/java/lib/junit-4.9b2.jar" /> |
16 | < sourcePath path = "${src.dir}" /> |
17 | < class location = "${base.dir}/${app.jar}" /> |
Note:
- The "taskdef" tag defines support for the Ant tag "findbugs".
- The "sourcePath" is the source code to be examined.
Jar file dependencies are also listed.
- Jenkins Configuration:
Enter the FindBugs "outputFile" which the plug-in will read to display results.
- Results:
Select the "FindBugs Trend" chart to view the details:
Java Warnings Plugin:
This plugin reports the number of Java compiler warnings and errors over time.
This plugin can be used to generate a plot. No extra software is required as it just reports extra information about your Java build.
- Install Jenkins Warnings Plugin:
- Select from the Jenkins (start page) + "Manage Jenkins" + "Manage Plugins". Now select the "Available" tab and select the Compiler Warnings Plugin.
- Select the "Install and Restart Jenkins" button.
- Warnings Plugin Info (scans Java and C++ console logs for warnings)
- Jenkins Configuration:
Select "Add" (Scan console log), then specify your compiler (in this case javac)
- Results:
Plot of the number of compiler warnings (in this case none)
Producing Java Warnings with Ant:
When compiling with Apache Ant, warnings are supressed by default.
It is required that one use the following Java compiler flag (-Xlint:all) to generate Java warnings which can be plotted by the Jenkins Warnings Plugin.
This can be added using the following XML in your build file.
Apache Ant Build File:
build.xml (snippet)
04 | < target name = "compile" > |
05 | < javac srcdir = "src/main/java" destdir = "classes" fork = "yes" > |
06 | < compilerarg line = "-Xlint:all" /> |
07 | < classpath refid = "classpath" /> |
Producing Java Warnings with Maven:
When compiling with Maven, warnings are supressed by default.
It is required that one use the compiler plugin for Maven to generate Java warnings which can be plotted by the Jenkins Warnings Plugin.
This can be added using the following XML in your POM file.
Maven Build File:
pom.xml (snippet)
07 | < groupId >org.apache.maven.plugins</ groupId > |
08 | < artifactId >maven-surefire-plugin</ artifactId > |
09 | < version >2.20</ version > |
11 | < redirectTestOutputToFile >true</ redirectTestOutputToFile > |
15 | < groupId >org.apache.maven.plugins</ groupId > |
16 | < artifactId >maven-compiler-plugin</ artifactId > |
17 | < version >3.0</ version > |
21 | < compilerArgument >-Xlint:all</ compilerArgument > |
22 | < showWarnings >true</ showWarnings > |
23 | < showDeprecation >true</ showDeprecation > |
OR
use the following which keeps the POM Netbeans friendly.
The compiler argument directive is not Netbeans friendly and can be injected to the pom.xml file as a Jenkins property which is not viewed by Netbeans when building from the POM file.
Jenkins project configuration:
Note that the Jenkins "Property "compilerArgument" matches the name used as the variable set in the POM.
Maven Build File:
pom.xml (snippet)
07 | < groupId >org.apache.maven.plugins</ groupId > |
08 | < artifactId >maven-surefire-plugin</ artifactId > |
09 | < version >2.20</ version > |
11 | < redirectTestOutputToFile >true</ redirectTestOutputToFile > |
15 | < groupId >org.apache.maven.plugins</ groupId > |
16 | < artifactId >maven-compiler-plugin</ artifactId > |
17 | < version >3.0</ version > |
19 | < compilerArgument >${compilerArgument}</ compilerArgument > |
26 | < maven.compiler.source >1.8</ maven.compiler.source > |
27 | < maven.compiler.target >1.8</ maven.compiler.target > |
28 | < maven.jar.plugin >2.3.2</ maven.jar.plugin > |
29 | < project.build.sourceEncoding >UTF-8</ project.build.sourceEncoding > |
30 | < junit.version >4.12</ junit.version > |
This POM file is Netbeans friendly because the variable "${compilerArgument}" does not get substituted for "Xlint:all" which suspends Netbeans scrolling during the build process.
It will however be used during the Jenkins build.
JUnit:
JUnit is supported natively by Jenkins so there is no extra plug-in installation, just configuration.
- JUnit Installation:
- See the YoLinux JUnit Tutorial for download and installation instructions as well as coding with JUnit.
- Ant build:
File: build.xml (snippets)
01 | <? xml version = "1.0" encoding = "UTF-8" ?> |
03 | < project name = "projx" default = "all" basedir = "." > |
04 | < description >Builds, tests, and runs projx</ description > |
05 | < property name = "build.dir" value = "./" /> |
06 | < property name = "src.dir" location = "${build.dir}/src" /> |
07 | < property name = "test.dir" location = "${build.dir}/test/src" /> |
08 | < property name = "test.htmlreports.dir" location = "${build.dir}/test/htmlreports" /> |
10 | < property name = "test.data.dir" location = "${build.dir}/test/data" /> |
11 | < property name = "junit.class.name" value = "com.megacorp.projx.JUnit.AllTests" /> |
16 | < path id = "classpath.junittest" > |
18 | < path refid = "classpath.base" /> |
19 | < pathelement location = "/opt/java/lib/junit-4.9b2.jar" /> |
20 | < pathelement location = "${test.dir}" /> |
26 | < target name = "test" depends = "compile-test" > |
27 | < mkdir dir = "${test.data.dir}" /> |
28 | < mkdir dir = "${test.htmlreports.dir}" /> |
30 | < junit fork = "no" haltonfailure = "no" showoutput = "yes" printsummary = "true" > |
31 | < test name = "${junit.class.name}" todir = "${test.data.dir}" /> |
32 | < formatter type = "brief" usefile = "false" /> |
33 | < formatter type = "xml" /> |
34 | < classpath refid = "classpath.base" /> |
35 | < classpath refid = "classpath.src" /> |
37 | < classpath refid = "classpath.junittest" /> |
39 | < junitreport todir = "${test.htmlreports.dir}" > |
40 | < fileset dir = "${test.data.dir}" > |
41 | < include name = "TEST-*.xml" /> |
44 | < report format = "frames" todir = "${test.htmlreports.dir}" /> |
48 | < target name = "all" depends = "compile-test" /> |
- Jenkins Configuration:
Configuration must match the "todir" directory of the JUnit test output.
- JUnit Results:
JUnit chart of sucessful tests. Increase is due to the addition of new tests.
Click on the JUnit chart to view details
JUnit HTML Results Report: ./test/htmlreports/index.html
Jenkins, JUnit and Maven:
For a full tutorial on the use of Maven with JUnit, see the Yolinux JUnit tutorial
Configure Jenkins to point to the JUnit test results:
Use the Jenkins Maven plug-in rather than executing Maven as a shell command.
The Maven plug-in is Maven aware and will post-process JUnit results for use with Jenkins.
Select your Jenkins project and "Configure":
Configure Build Project JUnit reporting:
Test results will be put into the following directory structure:
JaCoCo: code coverage:
- Install "JaCoCo":
- Install JaCoCo plugin:
- Select from the Jenkins (start page) + "Manage Jenkins" + "Manage Plugins". Now select the "Available" tab and select the JaCoCo Plugin.
- Select the "Install and Restart Jenkins" button.
- JaCoCo Plugin info
- Configure Build:
- Jenkins Plugin Configuration:
Turn on report generation: For the Jenkins project, select "Configure" + "Add post-build action" (bottom of page) + "Record JaCoCo coverage report" + "Apply".
The following entry form will be available:
Direct JaCoCo to use use the binary output file (jacoco.exec), and Java source and compiled class files.
Code coverage limits can be set to determine if the build is considered a pass or fail. Set to zero if code coverage will not be used to determine if the build is a pass or fail.
Select the "Save" button to save this configuration.
- Build Display:
Select graph plot to view details. If the build and test runs are successful, the "Overall Coverage Summary" of percentages will be posted.
Jenkins, JaCoCo and Maven:
Maven Build File:
pom.xml (snippet)
07 | < groupId >org.apache.maven.plugins</ groupId > |
08 | < artifactId >maven-surefire-plugin</ artifactId > |
09 | < version >2.20</ version > |
11 | < redirectTestOutputToFile >true</ redirectTestOutputToFile > |
15 | < groupId >org.jacoco</ groupId > |
16 | < artifactId >jacoco-maven-plugin</ artifactId > |
17 | < version >0.7.9</ version > |
21 | < goal >prepare-agent</ goal > |
26 | < phase >prepare-package</ phase > |
37 | < maven.compiler.source >1.8</ maven.compiler.source > |
38 | < maven.compiler.target >1.8</ maven.compiler.target > |
39 | < maven.jar.plugin >2.3.2</ maven.jar.plugin > |
40 | < project.build.sourceEncoding >UTF-8</ project.build.sourceEncoding > |
41 | < junit.version >4.12</ junit.version > |
Jenkins project post-build JaCoCo configuration:
Also see the Jenkins JaCoCo plugin home page
Links:

Books: