Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
org.etsi.osl.cridge
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
OSL
code
org.etsi.osl.cridge
Commits
2e96b986
Commit
2e96b986
authored
1 year ago
by
Dimitrios Giannopoulos
Browse files
Options
Downloads
Patches
Plain Diff
added mvn artifact ci automation
parent
b1dec308
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!8
Merging 2024Q2_RC into main, creating 2024Q2 Release
,
!4
added mvn artifact ci automation
Pipeline
#3555
passed with stage
in 49 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+8
-0
8 additions, 0 deletions
.gitlab-ci.yml
ci_settings.xml
+16
-0
16 additions, 0 deletions
ci_settings.xml
pom.xml
+17
-0
17 additions, 0 deletions
pom.xml
with
41 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
8
−
0
View file @
2e96b986
stages
:
-
deploy
deploy
:
stage
:
deploy
image
:
maven:3.9.5-ibm-semeru-17-focal
script
:
-
mvn deploy -s ci_settings.xml -DskipTests
This diff is collapsed.
Click to expand it.
ci_settings.xml
0 → 100644
+
16
−
0
View file @
2e96b986
<settings
xmlns=
"http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"
>
<servers>
<server>
<id>
gitlab-maven
</id>
<configuration>
<httpHeaders>
<property>
<name>
Job-Token
</name>
<value>
${CI_JOB_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
</servers>
</settings>
This diff is collapsed.
Click to expand it.
pom.xml
+
17
−
0
View file @
2e96b986
...
...
@@ -27,6 +27,23 @@
<slf4j-simple.version>
1.7.28
</slf4j-simple.version>
</properties>
<repositories>
<repository>
<id>
gitlab-maven
</id>
<url>
https://labs.etsi.org/rep/api/v4/groups/260/-/packages/maven
</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>
gitlab-maven
</id>
<url>
${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/maven
</url>
</repository>
<snapshotRepository>
<id>
gitlab-maven
</id>
<url>
${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/maven
</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<!-- Spring Boot BOM -->
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment