Course Content
UNIT 1 – Build and Release 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
BUILD AND RELEASE MANAGEMENT

Dependency Search Sequence in Maven

퇽회 Definition

The Dependency Search Sequence refers to the order in which Apache Maven looks for required libraries (dependencies) when building a project.


퇽훹 Search Order

When a dependency is needed, Maven follows this sequence:

1. Local Repository

  • First, Maven checks the local system (.m2/repository)
  • If found ᭒ used directly
  • No internet required

2. Central Repository

  • If not found locally, Maven checks the central repository (online)
  • Downloads the dependency if available

3. Remote Repository

  • If still not found, Maven checks configured remote repositories
  • Typically used in organizations (e.g., Nexus, Artifactory)

퇽훹 Flow Representation

Local ᭒ Central ᭒ Remote


퇽훹 Step-by-Step Process

  1. Dependency is declared in pom.xml
  2. Maven searches in Local Repository
  3. If missing ᭒ searches Central Repository
  4. If still missing ᭒ searches Remote Repository
  5. Once found ᭒ downloads and stores in Local Repository
  6. Used for build process

퇽훹 Example

 
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
 

Ⅱ Maven automatically follows the search sequence to locate this library.


퇽훹 Importance

  • Ensures fast builds (local caching)
  • Enables automatic dependency resolution
  • Reduces manual effort
  • Supports offline development
  • Improves efficiency in CI/CD pipelines
screen tagSupport