Configure Jenkins for Continuous Delivery of a Spring Boot application

Continuous DeliveryIn my previous post I described how I started a continuous delivery stack with one simple command. The next step is to prepare the stack to build and deploy an application in an automated way. In this post I describe how to configure the stack so it is ready for processing a simple Spring Boot application.
Although I have the components running as Docker containers they still need configuration to have them work together, especially Jenkins.

When I open the console for the fresh Jenkins install at http://localhost:8080 I get the following screen in which I can enter the generated password:
jenkins-password
The password can be found on the Docker container in the file shown in the screen or you can find it in the console output of the docker-compose terminal:
screenshot-at-jan-30-20-09-08
After filling in the pasword I get the choice to install the ‘default’ plugins or select them myself. For my use case I can simply select the default one (the Jenkins image I use already contain the necessary non-default plugin I need):
screenshot-at-jan-30-20-03-38
Installing the plugins may take a while but after that I create the Admin user in the next screen:
screenshot-at-jan-29-15-21-59
After this screen I get the Jenkins Dashboard:
screenshot-at-jan-30-20-15-27
Before I add my first job there are some things that I want to fix first:

  • Configure the Gitlab plugin
  • To give Jenkins access to the Git server I create a new user called ‘jenkins’ that is able to clone repositories. To create the new user go to http://localhost:8082 with a browser. Using my docker-compose stack I can login with user ‘root’ and the password ‘admin123’. Next I click on the ‘wrench’ to go to the admin area:
    screenshot-at-feb-02-08-47-03
    In this Admin area I create a new user called ‘jenkins’:
    screenshot-at-feb-02-09-03-59
    As you can see it says the password will be mailed but since I didn’t configure the mailserver in the Gitlab Docker this will not happen. After the user is created, I select it to edit it. I can then fill in the password manually. Now I log out to start a new session and log in as this new user ‘jenkins’. The first time I have to reset the password and login again. Finally when I am logged in as ‘jenkins’ user I go to the ‘Profile Settings’ of the ‘jenkins’ user and open the tab ‘Account’. Here I see the Private token for this user, as shown here:
    screenshot-at-feb-02-09-18-51
    I copy this so I can use it in the Jenkins configuration.
    Back in the Jenkins Dashboard I go to ‘Manage Jenkins‘ and add a new Credential of the ‘Gitlab Api Key’ type like this:
    screenshot-at-feb-02-19-50-28
    Next I go to the ‘Configure System‘ and create a GitLab connection like this:
    screenshot-at-feb-07-20-20-43
    This API Access key is used by the Gitlab plugin that will be used to checkout the Git code in the ‘pipeline’ job.

  • Add a Maven installation
  • In the Dashboard go to ‘Manage Jenkins’ and choose ‘Global Tool Configuration‘. Click ‘Add Maven’ and name the installation ‘M3’ like this:
    screenshot-at-feb-04-16-37-31
    The name of this Maven installation will be used in the Jenkinsfile that describes the pipeline job.

  • Configure Nexus as Maven mirror
  • To define a global Maven settings file for the Maven installation I use the Config File Provider plugin. To add a ‘settings.xml‘ file go to ‘Manage Jenkins‘ and select ‘Managed files’ in the main menu:
    screenshot-at-feb-05-17-16-32
    Choose ‘Add a new Config‘ and select the ‘Global Maven settings.xml’ as file type. In the content part I add my Nexus installation as mirror like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" 
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
              xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
     <mirrors>
        <mirror>
          <!--This sends everything else to /public -->
          <id>nexus</id>
          <mirrorOf>*</mirrorOf>
          <url>http://nexus:8081/repository/maven-public/</url>
        </mirror>
      </mirrors>
      <profiles>
        <profile>
          <id>nexus</id>
          <!--Enable snapshots for the built in central repo to direct -->
          <!--all requests to nexus via the mirror -->
          <repositories>
            <repository>
              <id>central</id>
              <url>http://central</url>
              <releases><enabled>true</enabled></releases>
              <snapshots><enabled>true</enabled></snapshots>
            </repository>
          </repositories>
         <pluginRepositories>
            <pluginRepository>
              <id>central</id>
              <url>http://central</url>
              <releases><enabled>true</enabled></releases>
              <snapshots><enabled>true</enabled></snapshots>
            </pluginRepository>
          </pluginRepositories>
        </profile>
      </profiles>
      <activeProfiles>
        <!--make the profile active all the time -->
        <activeProfile>nexus</activeProfile>
      </activeProfiles>
    </settings>
    

    Notice the ID of the Configuration File. I refer to it in my pipeline code. Since this pipeline is executed separately from the Jenkins installation I use the plugin ‘Pipeline Maven plugin‘ to have the pipeline make use of the same Maven settings.

That’s it for now. The stack is now running and ready to build my Spring Boot project. I will show this in the next post.

About Pascal Alma

Pascal is a senior IT consultant and has been working in IT since 1997. He is monitoring the latest development in new technologies (Mobile, Cloud, Big Data) closely and particularly interested in Java open source tool stacks, cloud related technologies like AWS and mobile development like building iOS apps with Swift. Specialties: Java/JEE/Spring Amazon AWS API/REST Big Data Continuous Delivery Swift/iOS
This entry was posted in Continuous Delivery, Docker, Jenkins and tagged , , , . Bookmark the permalink.

4 Responses to Configure Jenkins for Continuous Delivery of a Spring Boot application

  1. Pingback: Java Web Weekly, Issue 163 | Baeldung

  2. marcingrzejszczak says:

    Hi Pascal! Have you seen https://github.com/spring-cloud/spring-cloud-pipelines ? Most of the manual things you’ve mentioned here are automated there. Would love to hear your feedback about the project!

    • Pascal Alma says:

      Hi Marcin, I didn’t know about spring-cloud-pipelines project. I will give it a try sometime soon, thanks for the info.

  3. Pingback: Pipeline as code with a Spring Boot application | The Pragmatic Integrator

Comments are closed.