Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
org.etsi.osl.sol005nbi.osm10
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
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
Model 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
Show more breadcrumbs
OSL
code
org.etsi.osl.sol005nbi.osm10
Commits
d30b67f4
Commit
d30b67f4
authored
9 months ago
by
trantzas
Browse files
Options
Downloads
Plain Diff
Merging 2024Q2_RC into main, creating 2024Q2 Release.
parents
92129d16
21c6b3ac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!7
Merging 2024Q2_RC into main, creating 2024Q2 Release
Pipeline
#7294
passed
9 months ago
Stage: build
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+36
-0
36 additions, 0 deletions
.gitlab-ci.yml
ci_settings.xml
+16
-0
16 additions, 0 deletions
ci_settings.xml
pom.xml
+29
-12
29 additions, 12 deletions
pom.xml
with
81 additions
and
12 deletions
.gitlab-ci.yml
0 → 100644
+
36
−
0
View file @
d30b67f4
include
:
-
project
:
osl/code/org.etsi.osl.main
ref
:
main
file
:
-
ci-templates/default.yml
-
ci-templates/build.yml
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
==
"main"'
-
project
:
osl/code/org.etsi.osl.main
ref
:
develop
file
:
-
ci-templates/default.yml
-
ci-templates/build.yml
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
==
"develop"'
-
project
:
osl/code/org.etsi.osl.main
ref
:
$CI_COMMIT_REF_NAME
file
:
-
ci-templates/default.yml
-
ci-templates/build.yml
rules
:
-
if
:
'
$CI_COMMIT_REF_PROTECTED
&&
$CI_COMMIT_REF_NAME
!=
"main"
&&
$CI_COMMIT_REF_NAME
!=
"develop"'
-
project
:
osl/code/org.etsi.osl.main
ref
:
develop
file
:
-
ci-templates/default.yml
-
ci-templates/build_unprotected.yml
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
!=
"main"
&&
$CI_COMMIT_REF_NAME
!=
"develop"
&&
!$CI_COMMIT_REF_PROTECTED'
maven_build
:
extends
:
.maven_build
This diff is collapsed.
Click to expand it.
ci_settings.xml
0 → 100644
+
16
−
0
View file @
d30b67f4
<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
+
29
−
12
View file @
d30b67f4
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.etsi.osl.sol005nbi
</groupId>
<artifactId>
org.etsi.osl.sol005nbi.osm10
</artifactId>
<version>
1.2.0-SNAPSHOT
</version>
<packaging>
jar
</packaging>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
org.etsi.osl
</groupId>
<artifactId>
org.etsi.osl.main
</artifactId>
<version>
1.0.0
</version>
<relativePath>
../org.etsi.osl.main
</relativePath>
</parent>
<packaging>
jar
</packaging>
<name>
org.etsi.osl.sol005nbi.osm10
</name>
<artifactId>
org.etsi.osl.sol005nbi.osm10
</artifactId>
<name>
org.etsi.osl.sol005nbi.osm10
</name>
<organization>
<name>
openslice.io
</name>
...
...
@@ -27,7 +31,7 @@
</license>
</licenses>
<pluginRepositories>
<pluginRepositories>
<pluginRepository>
<id>
opendaylight-release
</id>
<name>
opendaylight-release
</name>
...
...
@@ -41,8 +45,11 @@
</pluginRepositories>
<repositories>
<repository>
<id>
gitlab-maven
</id>
<url>
https://labs.etsi.org/rep/api/v4/groups/260/-/packages/maven
</url>
</repository>
<repository>
<id>
opendaylight-release
</id>
<name>
opendaylight-release
</name>
...
...
@@ -54,6 +61,16 @@
<url>
https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/
</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>
<properties>
...
...
@@ -144,9 +161,9 @@
<!-- Dependencies for OSMClient START -->
<dependency>
<groupId>
org.etsi.osl
.sol005nbi
</groupId>
<groupId>
org.etsi.osl
</groupId>
<artifactId>
org.etsi.osl.sol005nbi.osm
</artifactId>
<version>
${
project
.version}
</version>
<version>
${
org.etsi.osl.sol005nbi.osm
.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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