SlideShare a Scribd company logo
1 of 26
CI Using Jenkins, Maven & SVN
Ankur Goyal
Email: ankur.fbd@gmail.com
Agenda
• Java Build Process
• Continuous Integration
 Introduction
 Tools
• SVN - Apache Subversion
• Maven
 Introduction
 The Philosophy
 Build Patterns
 Common Project Metadata Format
 Common Directory Structure
 Common Build Lifecycle
 Dependency Management
 Repository
 Phases & Goals
 Hands-on
• Jenkins
• Continuous Integration – Team’s Responsibilities
Java Build Process
• "Build" is a process that covers all the steps required to create a
"deliverable" of your software.
• In the Java world, this typically includes:
 Generating sources (sometimes).
 Compiling sources.
 Compiling test sources.
 Executing tests (unit tests, integration tests, etc).
 Packaging (into jar, war).
 Running health checks (static analyzers like Checkstyle, Findbugs, PMD, test
coverage, etc).
 Generating reports.
Continuous Integration - Introduction
• Continuous Integration (CI) is a development practice that requires
developers to
integrate code into a shared repository several times a day. Each
check-in is then
verified by an automated build, allowing teams to detect problems
early.
• CI Best Practices:
 Maintain a single source repository
 Automate the build
 Make your build self-testing
 Every commit should build on an integration machine
 Automate deployment
Continuous Integration – Process Overview
http://builtbyadam.files.wordpress.com/2010/06/ci-diagram.png
Continuous Integration – Why ?
• Integration of various modules at the end is hard due to following
reasons:
 Number of components keep increasing
 Complexity of the system keeps increasing
 There is no visibility of code quality & relationship between different
modules
• CI provides following benefits:
 Rapid Feedback - Detects system development problems in initial stage
 Reduces risk of cost & schedule
 Reduces rework
 Provides report so that one can judge the actual code quality
 Collective Ownership
Continuous Integration - Tools
• Source Repository
SVN, CVS, GIT etc
• Build Tool
Maven, ANT etc
• CI Server
Jenkins, Hudson etc
SVN – Apache Subversion
• Apache Subversion is a software versioning and revision control system
• Distributed as free software under the Apache License.
• Is Open Source.
• Runs on Unix, Linux, Windows, Mac
• Client’s such as TortoiseSVN are available which provide intuitive and easy
to use
interface
• Developers use Subversion to maintain current and historical versions of
files
such as source code, web pages, and documentation.
Maven - Introduction
• Is a Java build tool.
• Is a dependency management tool
• Provides a standard development infrastructure across
projects
• Consistent project structure & build model
• Follows standard project life cycle phases & ensures that
developers moving
between projects do not need to learn new processes.
Maven - Nomenclature
• Archetype: template based on which maven
project would be created e.g.:
org.apache.maven.archetypes:maven-archetype-quickstart
(An archetype which contains a sample Maven project.)
• Groupid: similar to package in java e.g:
com.endeavour.first
• Artifactid: similar to project name in java e.g:
Maven-sample
Maven – Why ?
• Project references/dependencies
Make sure jars are available during compile time
Make sure to copy jars when moving project source
• Dependencies
Include dependencies of included jars
• Project Structure
Defines a standard project structure
• Publishing & Deploying
Allows phase-wise publishing & deployment
Maven – The Philosophy
• Maven was born of the very practical desire to make several projects at
Apache work in the same way. So that developers could freely move between
these
projects, knowing clearly how they all worked by understanding how one of
them worked.
• Puts convention over configuration
• Do not script the build rather describe the project & configure the build
• Defines Build Patterns
 Common Project Metadata Format
 Common Directory Structure
 Common Build lifecycles
Build Patterns – Common Project Metadata Format
• POM  Project Object Model
 Pom.xml  Project configuration file
• Contains all metadata about the
project:
 Name
 Packaging Type
 Dependencies
 Repositories to use
 Tool links (CI, SCM, Bug Tracker etc)
Build Patterns – Common Directory Structure
• Maven is opinionated about project structure & follows
convention over configuration approach.
• Following is standard directory layout:
 target: Default work directory
 src: All project source files go in this directory
 src/main: All sources that go into primary artifact
 src/test: All sources contributing to testing project
 src/main/java: All java source files
 src/main/webapp: All web source files
 src/main/resources: All non compiled source files
 src/test/java: All java test source files
 src/test/resources: All non compiled test source files
Build Patterns – Common Build Lifecycle
• Default Lifecycle phases - Invoked with ‘mvn’ command
 validate - validate the project is correct and all necessary information is available
 compile - compile the source code of the project
 test - test the compiled source code using a suitable unit testing framework e.g. junit
 package - take the compiled code and package it in its distributable format, such as a JAR
 integration-test - process and deploy the package if necessary into an environment where integration tests can
be run
 verify - run any checks to verify the package is valid and meets quality criteria
 install - install the package into the local repository, for use as a dependency in other projects locally (Not server
install)
 deploy - copies the final package to the remote repository for sharing with other developers and projects (Not
server deploy)
• There are two other Maven lifecycles of note beyond the default list above:
 clean: cleans up artifacts created by prior builds
 site: generates site documentation for this project
Specify the phase needed to run, previous phases run automatically
Maven – Dependency Management
• Dependencies Identified by
groupid
artifactid
version
scope
• Declaration in pom.xml will do the following:
download the jar
add it to the classpath
• Supports Transitive dependencies
Automatically takes care of dependencies of dependencies
Maven - Repository
• Contains versioned artifacts & plugins associated with
pom
• No need to copy libraries for each individual project
• Remote repository can be added as required
• Local repository caches artifacts to allow offline builds
• All project references go through the repository
therefore no relative paths
Maven – Phases & Goals
• Goals are executed in phases. Phases determine the order of goal’s
execution.
• The compile phase goals will always be executed before the test
phase goals which
will always be executed before the package phase goals and so on…
• When executing maven we can specify a goal or a phase, however If
you specify a
goal then it will still run all phases up to the phase for that goal. In
other words,
if you specify the jar goal it will run all phases up to the package phase
(and all goals in those phases), and then it will run the jar goal.
Phase Goal
compile compiler:compile
test-compile compiler:testCompile
package jar:jar or rar:rar or war:war
Maven – Hands-on
• Install & Configure Maven
mvn --version
• Create a Maven Project that outputs a jar
mvn archetype:generate
• Add a dependency in project created above
▌Resources:
 http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
 http://www.mkyong.com/tutorials/maven-tutorials/
 https://www.youtube.com/watch?v=al7bRZzz4oU
Jenkins - Introduction
• An open source CI server
• Easy To Install and use
• Formerly known as Hudson
• Triggers a build based on some event such as notice SVN
commit or manually click build by user or build periodically.
• Generates reports & notify to team as configured
• Deploys the deliverable at given server
Jenkins - Why
• Easy GUI to Manage
• Strong Community
• Distributed Builds
• Open Source and Free
Used by leading organizations
Jenkins – Basic Steps
• Notice a change
• Checkout source code
• Execute builds/test
• Record and Publish results
• Notify Team
Integrating Plugins
• Jenkins is extensible & we can add new capabilities using
plugins
• Over 600 plugins are available for Jenkins such as:
 Static code analyzers
 Test coverage
 Reporting plugins
 Credentials Management
 Mailer etc
• Use Manage Plugin section for integrating plugins
Integrating Plugins – Code Quality
• Install PMD, FindBugs and checkstyle plugins from the
manage plugins option.
• Add cobertura plugin to capture the code coverage report by
Junit.
• Add the plugins in the pom.xml file of the project.
• Configure the jenkins job to process the above tools.
• Install the plugins to display the violations on the jenkins
dashboard like-
 Analysis Collector Plugin, Violations, Dashboard View, Plot Plugin.
• Set goal: Cobertura:cobertura check pmd:pmd
findbug:findbug in Jenkins Job.
• Execute the build.
Continuous Integration – Team’s Responsibilities
• Check in frequently
• Don’t check in broken code
• Don’t check in untested code
• Don’t check in when the build is broken
• After checking in make sure that system builds successfully
Thank You & Happy CI !!!

More Related Content

What's hot

Continuous integration
Continuous integrationContinuous integration
Continuous integration
amscanne
 
Continuous integration / deployment with Jenkins
Continuous integration / deployment with JenkinsContinuous integration / deployment with Jenkins
Continuous integration / deployment with Jenkins
cherryhillco
 

What's hot (20)

Continuous delivery-with-maven
Continuous delivery-with-mavenContinuous delivery-with-maven
Continuous delivery-with-maven
 
Jenkins
JenkinsJenkins
Jenkins
 
Jenkins CI
Jenkins CIJenkins CI
Jenkins CI
 
Continuous integration
Continuous integrationContinuous integration
Continuous integration
 
Jenkins introduction
Jenkins introductionJenkins introduction
Jenkins introduction
 
Delivery Pipeline as Code: using Jenkins 2.0 Pipeline
Delivery Pipeline as Code: using Jenkins 2.0 PipelineDelivery Pipeline as Code: using Jenkins 2.0 Pipeline
Delivery Pipeline as Code: using Jenkins 2.0 Pipeline
 
Continuous Delivery Using Jenkins
Continuous Delivery Using JenkinsContinuous Delivery Using Jenkins
Continuous Delivery Using Jenkins
 
Continuous integration with Jenkins
Continuous integration with JenkinsContinuous integration with Jenkins
Continuous integration with Jenkins
 
Jenkins CI
Jenkins CIJenkins CI
Jenkins CI
 
Continuous integration / deployment with Jenkins
Continuous integration / deployment with JenkinsContinuous integration / deployment with Jenkins
Continuous integration / deployment with Jenkins
 
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
CI/CD with Jenkins and Docker - DevOps Meetup Day ThailandCI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
 
Introduction to Continuous Integration with Jenkins
Introduction to Continuous Integration with JenkinsIntroduction to Continuous Integration with Jenkins
Introduction to Continuous Integration with Jenkins
 
Introduction to jenkins
Introduction to jenkinsIntroduction to jenkins
Introduction to jenkins
 
Jenkins tutorial
Jenkins tutorialJenkins tutorial
Jenkins tutorial
 
Jenkins Introduction
Jenkins IntroductionJenkins Introduction
Jenkins Introduction
 
Jenkins-CI
Jenkins-CIJenkins-CI
Jenkins-CI
 
Anatomy of a Continuous Integration and Delivery (CICD) Pipeline
Anatomy of a Continuous Integration and Delivery (CICD) PipelineAnatomy of a Continuous Integration and Delivery (CICD) Pipeline
Anatomy of a Continuous Integration and Delivery (CICD) Pipeline
 
JENKINS Training
JENKINS TrainingJENKINS Training
JENKINS Training
 
What is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | EdurekaWhat is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | Edureka
 
An Introduction To Jenkins
An Introduction To JenkinsAn Introduction To Jenkins
An Introduction To Jenkins
 

Viewers also liked

Trac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイル
Trac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイルTrac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイル
Trac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイル
Shuji Watanabe
 
Using Jenkins XML API
Using Jenkins XML APIUsing Jenkins XML API
Using Jenkins XML API
Anton Weiss
 

Viewers also liked (20)

Introduction to Continuous Integration with Jenkins
Introduction to Continuous Integration with JenkinsIntroduction to Continuous Integration with Jenkins
Introduction to Continuous Integration with Jenkins
 
Jenkins - From Continuous Integration to Continuous Delivery
Jenkins - From Continuous Integration to Continuous DeliveryJenkins - From Continuous Integration to Continuous Delivery
Jenkins - From Continuous Integration to Continuous Delivery
 
Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners
 
OpenCms Module Development & Deployment with IntelliJ, Maven and Jenkins
OpenCms Module Development & Deployment with IntelliJ, Maven and JenkinsOpenCms Module Development & Deployment with IntelliJ, Maven and Jenkins
OpenCms Module Development & Deployment with IntelliJ, Maven and Jenkins
 
Git for beginners
Git for beginnersGit for beginners
Git for beginners
 
Selenium
SeleniumSelenium
Selenium
 
Selenium Camp 2016
Selenium Camp 2016Selenium Camp 2016
Selenium Camp 2016
 
Git tutorial
Git tutorial Git tutorial
Git tutorial
 
Software Testing
Software TestingSoftware Testing
Software Testing
 
Trac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイル
Trac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイルTrac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイル
Trac/Subversion/JUnit/Maven/Jenkinsで構築する開発スタイル
 
Juc west-how to build a jenkins db the wrong way!
Juc west-how to build a jenkins db the wrong way!Juc west-how to build a jenkins db the wrong way!
Juc west-how to build a jenkins db the wrong way!
 
Los vatos
Los vatosLos vatos
Los vatos
 
Behavior-Driven Development and Automation Testing Using Cucumber Framework W...
Behavior-Driven Development and Automation Testing Using Cucumber Framework W...Behavior-Driven Development and Automation Testing Using Cucumber Framework W...
Behavior-Driven Development and Automation Testing Using Cucumber Framework W...
 
Jenkins Workflow - An Introduction
Jenkins Workflow - An IntroductionJenkins Workflow - An Introduction
Jenkins Workflow - An Introduction
 
Maven Introduction
Maven IntroductionMaven Introduction
Maven Introduction
 
20160929 android taipei Sonatype nexus on amazon ec2
20160929 android taipei Sonatype nexus on amazon ec2 20160929 android taipei Sonatype nexus on amazon ec2
20160929 android taipei Sonatype nexus on amazon ec2
 
Protractor overview
Protractor overviewProtractor overview
Protractor overview
 
Protractor training
Protractor trainingProtractor training
Protractor training
 
Using Jenkins XML API
Using Jenkins XML APIUsing Jenkins XML API
Using Jenkins XML API
 
DevOps – SonarQube
DevOps – SonarQubeDevOps – SonarQube
DevOps – SonarQube
 

Similar to Ci jenkins maven svn

Java build tools
Java build toolsJava build tools
Java build tools
Sujit Kumar
 

Similar to Ci jenkins maven svn (20)

Jenkins advance topic
Jenkins advance topicJenkins advance topic
Jenkins advance topic
 
Introduction tomaven
Introduction tomavenIntroduction tomaven
Introduction tomaven
 
Session 2
Session 2Session 2
Session 2
 
Session 2
Session 2Session 2
Session 2
 
Mavennotes.pdf
Mavennotes.pdfMavennotes.pdf
Mavennotes.pdf
 
Apache Maven
Apache MavenApache Maven
Apache Maven
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest Istanbul
 
Maven in mulesoft
Maven in mulesoftMaven in mulesoft
Maven in mulesoft
 
Jenkins.pdf
Jenkins.pdfJenkins.pdf
Jenkins.pdf
 
Learning Maven by Example
Learning Maven by ExampleLearning Maven by Example
Learning Maven by Example
 
Jenkins_1679702972.pdf
Jenkins_1679702972.pdfJenkins_1679702972.pdf
Jenkins_1679702972.pdf
 
jenkins.pdf
jenkins.pdfjenkins.pdf
jenkins.pdf
 
Java build tools
Java build toolsJava build tools
Java build tools
 
Version Control and Continuous Integration
Version Control and Continuous IntegrationVersion Control and Continuous Integration
Version Control and Continuous Integration
 
Introduction to Maven for beginners and DevOps
Introduction to Maven for beginners and DevOpsIntroduction to Maven for beginners and DevOps
Introduction to Maven for beginners and DevOps
 
Contineous integration
Contineous integrationContineous integration
Contineous integration
 
Devops
DevopsDevops
Devops
 
Maven 3 Overview
Maven 3  OverviewMaven 3  Overview
Maven 3 Overview
 
Build tool
Build toolBuild tool
Build tool
 
Maven
MavenMaven
Maven
 

Recently uploaded

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodology
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
 

Ci jenkins maven svn

  • 1. CI Using Jenkins, Maven & SVN Ankur Goyal Email: ankur.fbd@gmail.com
  • 2. Agenda • Java Build Process • Continuous Integration  Introduction  Tools • SVN - Apache Subversion • Maven  Introduction  The Philosophy  Build Patterns  Common Project Metadata Format  Common Directory Structure  Common Build Lifecycle  Dependency Management  Repository  Phases & Goals  Hands-on • Jenkins • Continuous Integration – Team’s Responsibilities
  • 3. Java Build Process • "Build" is a process that covers all the steps required to create a "deliverable" of your software. • In the Java world, this typically includes:  Generating sources (sometimes).  Compiling sources.  Compiling test sources.  Executing tests (unit tests, integration tests, etc).  Packaging (into jar, war).  Running health checks (static analyzers like Checkstyle, Findbugs, PMD, test coverage, etc).  Generating reports.
  • 4. Continuous Integration - Introduction • Continuous Integration (CI) is a development practice that requires developers to integrate code into a shared repository several times a day. Each check-in is then verified by an automated build, allowing teams to detect problems early. • CI Best Practices:  Maintain a single source repository  Automate the build  Make your build self-testing  Every commit should build on an integration machine  Automate deployment
  • 5. Continuous Integration – Process Overview http://builtbyadam.files.wordpress.com/2010/06/ci-diagram.png
  • 6. Continuous Integration – Why ? • Integration of various modules at the end is hard due to following reasons:  Number of components keep increasing  Complexity of the system keeps increasing  There is no visibility of code quality & relationship between different modules • CI provides following benefits:  Rapid Feedback - Detects system development problems in initial stage  Reduces risk of cost & schedule  Reduces rework  Provides report so that one can judge the actual code quality  Collective Ownership
  • 7. Continuous Integration - Tools • Source Repository SVN, CVS, GIT etc • Build Tool Maven, ANT etc • CI Server Jenkins, Hudson etc
  • 8. SVN – Apache Subversion • Apache Subversion is a software versioning and revision control system • Distributed as free software under the Apache License. • Is Open Source. • Runs on Unix, Linux, Windows, Mac • Client’s such as TortoiseSVN are available which provide intuitive and easy to use interface • Developers use Subversion to maintain current and historical versions of files such as source code, web pages, and documentation.
  • 9. Maven - Introduction • Is a Java build tool. • Is a dependency management tool • Provides a standard development infrastructure across projects • Consistent project structure & build model • Follows standard project life cycle phases & ensures that developers moving between projects do not need to learn new processes.
  • 10. Maven - Nomenclature • Archetype: template based on which maven project would be created e.g.: org.apache.maven.archetypes:maven-archetype-quickstart (An archetype which contains a sample Maven project.) • Groupid: similar to package in java e.g: com.endeavour.first • Artifactid: similar to project name in java e.g: Maven-sample
  • 11. Maven – Why ? • Project references/dependencies Make sure jars are available during compile time Make sure to copy jars when moving project source • Dependencies Include dependencies of included jars • Project Structure Defines a standard project structure • Publishing & Deploying Allows phase-wise publishing & deployment
  • 12. Maven – The Philosophy • Maven was born of the very practical desire to make several projects at Apache work in the same way. So that developers could freely move between these projects, knowing clearly how they all worked by understanding how one of them worked. • Puts convention over configuration • Do not script the build rather describe the project & configure the build • Defines Build Patterns  Common Project Metadata Format  Common Directory Structure  Common Build lifecycles
  • 13. Build Patterns – Common Project Metadata Format • POM  Project Object Model  Pom.xml  Project configuration file • Contains all metadata about the project:  Name  Packaging Type  Dependencies  Repositories to use  Tool links (CI, SCM, Bug Tracker etc)
  • 14. Build Patterns – Common Directory Structure • Maven is opinionated about project structure & follows convention over configuration approach. • Following is standard directory layout:  target: Default work directory  src: All project source files go in this directory  src/main: All sources that go into primary artifact  src/test: All sources contributing to testing project  src/main/java: All java source files  src/main/webapp: All web source files  src/main/resources: All non compiled source files  src/test/java: All java test source files  src/test/resources: All non compiled test source files
  • 15. Build Patterns – Common Build Lifecycle • Default Lifecycle phases - Invoked with ‘mvn’ command  validate - validate the project is correct and all necessary information is available  compile - compile the source code of the project  test - test the compiled source code using a suitable unit testing framework e.g. junit  package - take the compiled code and package it in its distributable format, such as a JAR  integration-test - process and deploy the package if necessary into an environment where integration tests can be run  verify - run any checks to verify the package is valid and meets quality criteria  install - install the package into the local repository, for use as a dependency in other projects locally (Not server install)  deploy - copies the final package to the remote repository for sharing with other developers and projects (Not server deploy) • There are two other Maven lifecycles of note beyond the default list above:  clean: cleans up artifacts created by prior builds  site: generates site documentation for this project Specify the phase needed to run, previous phases run automatically
  • 16. Maven – Dependency Management • Dependencies Identified by groupid artifactid version scope • Declaration in pom.xml will do the following: download the jar add it to the classpath • Supports Transitive dependencies Automatically takes care of dependencies of dependencies
  • 17. Maven - Repository • Contains versioned artifacts & plugins associated with pom • No need to copy libraries for each individual project • Remote repository can be added as required • Local repository caches artifacts to allow offline builds • All project references go through the repository therefore no relative paths
  • 18. Maven – Phases & Goals • Goals are executed in phases. Phases determine the order of goal’s execution. • The compile phase goals will always be executed before the test phase goals which will always be executed before the package phase goals and so on… • When executing maven we can specify a goal or a phase, however If you specify a goal then it will still run all phases up to the phase for that goal. In other words, if you specify the jar goal it will run all phases up to the package phase (and all goals in those phases), and then it will run the jar goal. Phase Goal compile compiler:compile test-compile compiler:testCompile package jar:jar or rar:rar or war:war
  • 19. Maven – Hands-on • Install & Configure Maven mvn --version • Create a Maven Project that outputs a jar mvn archetype:generate • Add a dependency in project created above ▌Resources:  http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html  http://www.mkyong.com/tutorials/maven-tutorials/  https://www.youtube.com/watch?v=al7bRZzz4oU
  • 20. Jenkins - Introduction • An open source CI server • Easy To Install and use • Formerly known as Hudson • Triggers a build based on some event such as notice SVN commit or manually click build by user or build periodically. • Generates reports & notify to team as configured • Deploys the deliverable at given server
  • 21. Jenkins - Why • Easy GUI to Manage • Strong Community • Distributed Builds • Open Source and Free Used by leading organizations
  • 22. Jenkins – Basic Steps • Notice a change • Checkout source code • Execute builds/test • Record and Publish results • Notify Team
  • 23. Integrating Plugins • Jenkins is extensible & we can add new capabilities using plugins • Over 600 plugins are available for Jenkins such as:  Static code analyzers  Test coverage  Reporting plugins  Credentials Management  Mailer etc • Use Manage Plugin section for integrating plugins
  • 24. Integrating Plugins – Code Quality • Install PMD, FindBugs and checkstyle plugins from the manage plugins option. • Add cobertura plugin to capture the code coverage report by Junit. • Add the plugins in the pom.xml file of the project. • Configure the jenkins job to process the above tools. • Install the plugins to display the violations on the jenkins dashboard like-  Analysis Collector Plugin, Violations, Dashboard View, Plot Plugin. • Set goal: Cobertura:cobertura check pmd:pmd findbug:findbug in Jenkins Job. • Execute the build.
  • 25. Continuous Integration – Team’s Responsibilities • Check in frequently • Don’t check in broken code • Don’t check in untested code • Don’t check in when the build is broken • After checking in make sure that system builds successfully
  • 26. Thank You & Happy CI !!!