Course Content
UNIT 1 – Build and Release Management
INTRODUCTION : Build, Introduction—Build and Release Management, Build Management, Build Reporting – SampleSonarqube Report, Build Reporting – Build status, Release Planning, Packaging, Authorization,Redeployment, Declarative Dependency Management Build and Release Management is a key part of modern software development that focuses on how code is compiled, tested, packaged, and delivered to users in a structured and reliable way. It ensures that software moves smoothly from development to production with minimal errors.
0/11
UNIT 2 – DEPENDENCY MANAGEMENT BUILD TOOLS
Dependency Management is the process of handling external libraries, frameworks, and modules that a software project requires to function properly.
0/11
UNIT 3 – DOCUMENTATION AND REPORTING
Documentation is the process of recording all information related to software development, build, and release activities in a clear and structured format.
0/9
UNIT 4 UNDERSTANDING A RELEASE CYCLE
A Release Cycle is the complete process through which software moves from development to deployment, ensuring it is tested, approved, and delivered to users in a structured way.
0/7
UNIT 5 GitHub
GitHub 📌 Definition GitHub is a web-based platform used for storing, managing, and collaborating on source code using Git. 🔹 Key Features 1. Repository Hosting Stores project files and code online Public and private repositories available 2. Version Control Tracks changes in code Maintains history of modifications 3. Collaboration Multiple developers can work on the same project Supports pull requests and code reviews 4. Branching & Merging Create separate branches for features Merge changes into the main project 5. Issue Tracking Report bugs and track tasks Manage project workflows 6. GitHub Actions Automates workflows (CI/CD pipelines) Build, test, and deploy code automatically 🔹 Common GitHub Terms Repository (Repo) → Storage for project files Commit → Save changes Branch → Separate version of code Merge → Combine changes Pull Request (PR) → Request to merge code 🔹 Basic Workflow Create a repository Clone it to local system Make changes Commit changes Push to GitHub Create pull request Merge changes 🔹 Advantages Easy collaboration Secure code storage Version tracking Integration with CI/CD tools Open-source community support 🔹 Example A team creates a project in GitHub. Developers work on different features using branches and merge them after testing.
0/10
PUZZLES
scenario-based questions related to Build and Release Management
0/2
Question Bank
0/1
Assignments
0/1
BUILD AND RELEASE MANAGEMENT

Remote Repository (Maven)

퇽회 Definition

A Remote Repository is a repository hosted on a server (outside your local system) that stores project dependencies and artifacts. It allows teams to share libraries and build outputs across different systems.

In Apache Maven, remote repositories are used when dependencies are not available in the local or central repository.


퇽훹 Key Features

  • Hosted on a network/server
  • Accessible via URL
  • Used for team collaboration
  • Stores both public and private artifacts

퇽훹 Common Remote Repository Tools

  • Sonatype Nexus Repository
  • JFrog Artifactory

퇽훹 How Maven Uses Remote Repository

  1. Checks Local Repository
  2. If not found ᭒ checks Central Repository
  3. If still not found ᭒ checks Remote Repository
  4. Downloads dependency and stores it locally

퇽훹 Example Configuration (pom.xml)

 
<repositories>
<repository>
<id>company-repo</id>
<url>http://repo.company.com/maven2</url>
</repository>
</repositories>
 

퇽훹 Advantages

  • Enables team sharing of artifacts
  • Supports private/internal libraries
  • Improves dependency control
  • Helps in secure builds

퇽훹 Difference from Central Repository

Feature Central Repository Remote Repository
Ownership Public (Maven) Organization/Private
Access Open Controlled
Content Open-source libs Internal + external libs

퇽훹 Importance

  • Essential for enterprise projects
  • Supports CI/CD pipelines
  • Maintains version control of artifacts