Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

GitLab Deploy – Package Registry – A Complete Guide


๐Ÿ—๏ธ 1. Ensure Your GitLab Project Is Maven-Ready

To store your Java packages (JAR/WAR) into the GitLab Package Registry using GitLab CI/CD (SaaS, version 18.x), you can use GitLabโ€™s built-in Maven repository support.

Hereโ€™s a step-by-step guide to:

โœ… Build your Java project
โœ… Upload the .jar or .war to GitLabโ€™s Maven Package Registry
โœ… Do this all through your .gitlab-ci.yml pipeline

In your project root:

Ensure pom.xml (for Maven) is set up with:

<project>
  ...
  <groupId>com.example</groupId>
  <artifactId>my-app</artifactId>
  <version>1.0.0</version>
  ...
</project>
Code language: HTML, XML (xml)

๐Ÿงช 2. GitLab Package Registry URL

GitLab SaaS Maven registry endpoint:

https://gitlab.com/api/v4/projects/<PROJECT_ID>/packages/maven
Code language: HTML, XML (xml)

You can find <PROJECT_ID> in your GitLab project settings or by using:

https://gitlab.com/<namespace>/<project_name>
Code language: HTML, XML (xml)

๐Ÿ” 3. Create a CI/CD Job to Publish Artifact

.gitlab-ci.yml example for Maven:

stages:
  - build
  - publish

variables:
  MAVEN_CLI_OPTS: "-B -DskipTests"

build-job:
  stage: build
  image: maven:3.8.7-jdk-11
  script:
    - mvn $MAVEN_CLI_OPTS clean package
  artifacts:
    paths:
      - target/*.jar
      - target/*.war

publish-job:
  stage: publish
  image: maven:3.8.7-jdk-11
  script:
    - mvn deploy -s settings.xml
  only:
    - main
Code language: PHP (php)

โš™๏ธ 4. Add settings.xml for GitLab Auth

In the root of your repo (or dynamically generate in CI):

<settings>
  <servers>
    <server>
      <id>gitlab</id>
      <username>gitlab-ci-token</username>
      <password>${env.CI_JOB_TOKEN}</password>
    </server>
  </servers>
</settings>
Code language: HTML, XML (xml)

Ensure your pom.xml contains:

<distributionManagement>
  <repository>
    <id>gitlab</id>
    <url>https://gitlab.com/api/v4/projects/<PROJECT_ID>/packages/maven</url>
  </repository>
</distributionManagement>
Code language: HTML, XML (xml)

๐Ÿ›ก๏ธ 5. Use the CI_JOB_TOKEN Securely

  • gitlab-ci-token is a special user recognized by GitLabโ€™s package registry.
  • CI_JOB_TOKEN is auto-injected in GitLab CI/CD and scoped to your project.

๐Ÿ“ฆ 6. Check Published Packages

After the pipeline completes:

  1. Go to your GitLab project
  2. Click on Packages & Registries โ†’ Package Registry
  3. Youโ€™ll see your .jar or .war listed

๐Ÿง  Bonus: Clean Up or Promote Packages

You can add manual jobs to:

  • Promote packages to another environment
  • Delete old versions via API
  • Install them in another Java project using Maven:
<dependency>
  <groupId>com.example</groupId>
  <artifactId>my-app</artifactId>
  <version>1.0.0</version>
</dependency>
Code language: HTML, XML (xml)

โœ… Summary

StepDescription
Build ArtifactUse mvn package in CI job
Upload to GitLabUse mvn deploy with GitLab Maven repo
AuthUse CI_JOB_TOKEN with gitlab-ci-token
ViewPackages tab in GitLab UI

How to use Package registry using Gradle

Here is a step-by-step guide to publish JAR/WAR packages from a Gradle-based Java project to GitLabโ€™s Maven Package Registry, using GitLab SaaS 18.x.


โœ… Overview

  • Youโ€™ll use GitLabโ€™s Maven-compatible Package Registry
  • Youโ€™ll configure Gradle to use GitLab as a Maven repo
  • Youโ€™ll automate it using .gitlab-ci.yml and CI_JOB_TOKEN

๐Ÿ“ 1. Setup Your Gradle Project

In your build.gradle file:

plugins {
    id 'java'
    id 'maven-publish'
}

group = 'com.example'
version = '1.0.0'

publishing {
    publications {
        mavenJava(MavenPublication) {
            from components.java
        }
    }
    repositories {
        maven {
            name = "GitLab"
            url = uri("https://gitlab.com/api/v4/projects/<PROJECT_ID>/packages/maven")
            credentials {
                username = project.findProperty("gitlabUser") ?: System.getenv("CI_JOB_TOKEN")
                password = project.findProperty("gitlabToken") ?: System.getenv("CI_JOB_TOKEN")
            }
        }
    }
}
Code language: JavaScript (javascript)

Replace <PROJECT_ID> with your GitLab project ID. You can find it on the project homepage (e.g., gitlab.com/api/v4/projects/1234567).


๐Ÿ” 2. No Hardcoded Credentials

Do not store username/token in code.

In CI/CD, GitLab will inject CI_JOB_TOKEN automatically. For local testing, you can override via gradle.properties or CLI:

gitlabUser=gitlab-ci-token
gitlabToken=<your personal access token>
Code language: HTML, XML (xml)

๐Ÿงช 3. Test Locally (Optional)

./gradlew publish \
  -PgitlabUser=gitlab-ci-token \
  -PgitlabToken=<your GitLab personal access token>
Code language: HTML, XML (xml)

โš™๏ธ 4. Create .gitlab-ci.yml

stages:
  - build
  - publish

variables:
  GRADLE_USER_HOME: "$CI_PROJECT_DIR/.gradle"

build-job:
  stage: build
  image: gradle:8.2.1-jdk17
  script:
    - gradle build

publish-job:
  stage: publish
  image: gradle:8.2.1-jdk17
  script:
    - gradle publish
  only:
    - main
Code language: JavaScript (javascript)

This will publish the JAR/WAR file to GitLab Package Registry on main branch only.


๐Ÿ“ฆ 5. Where to View Packages

After successful pipeline execution:

  • Navigate to Your Project โ†’ Packages & Registries โ†’ Package Registry
  • Youโ€™ll see the .jar or .war under your published Maven group.

๐Ÿ” 6. How to Use in Other Projects

In another Gradle project, consume the published package:

repositories {
    maven {
        url = uri("https://gitlab.com/api/v4/projects/<PROJECT_ID>/packages/maven")
        credentials {
            username = 'gitlab-ci-token'
            password = System.getenv("CI_JOB_TOKEN") // or use .env or gradle.properties
        }
    }
}

dependencies {
    implementation 'com.example:your-artifact:1.0.0'
}
Code language: JavaScript (javascript)

โœ… Summary Table

StepAction
build.gradleAdd maven-publish, configure GitLab Maven repo
CredentialsUse CI_JOB_TOKEN with gitlab-ci-token
.gitlab-ci.ymlRun gradle publish from CI/CD
Registry URLhttps://gitlab.com/api/v4/projects/<PROJECT_ID>/packages/maven
View PackagesProject โ†’ Packages & Registries โ†’ Package Registry

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
I'm Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Top 10 Integration Platform as a Service (iPaaS) Tools in 2026: Features, Pros, Cons & Comparison

Introduction In todayโ€™s fast-paced digital world, businesses are leveraging multiple software applications, cloud services, and data sources to streamline operations. However, the challenge lies in integrating these…

Read More

IReviewed Blog’s Post List

truereviewnow.com is a portal for product review and rating. truereviewnow.com is having very in-depth analysis of review and testimony of Mobiles, Laptop, Electronics Gadgets, Airports, Boradbands, Movies…

Read More

Top 10 Social Media Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, social media continues to be a cornerstone of digital marketing strategies, shaping how businesses connect with their audiences. With millions of users interacting on…

Read More

Top 10 Drone Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, drones are not only revolutionizing industries like agriculture, logistics, filmmaking, and construction, but also the way we collect and process data. Drone software is…

Read More

Top 10 AI Survey Automation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI Survey Automation Tools are transforming the way businesses, researchers, and organizations gather and analyze feedback. Traditional survey platforms often relied on static questions…

Read More

Top 10 AI Animation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI animation tools are revolutionizing how creators, businesses, and educators bring stories to life, making animation accessible to all skill levels. These tools leverage…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
0
Would love your thoughts, please comment.x
()
x