Overview
Repositories oam and scp/oam/modeling are used to provide osgi bundles and docker images for nonrtric-o1-controller.
- feature parent for the feature bundles and distribution.
- docker images for nonrtric-o1-controller
- feature bundles for specific devicemanagers
- model bundles with classes for generated classes from yanf files, representing specific standards
Setup tasks/sub-tasks of jenkins are bundled via - OAM-83Getting issue details... STATUS
Target environments
- ONAP Frankfurt: Maven 3.5, Java 8
- ONAP Guilin: Maven 3.5, Java 8 and Maven 3.6 Java 11
Structure and Jenkins jobs
The following sub structure is used:
repo:path | Build results | description | Jenkins jobs |
---|---|---|---|
oam:distribution/ | docker images → nexus | Source for image creation | ci-management/jjb/oam/oam-distribution.yaml |
oam:docs/ | Documentation → readTheDocs | readTheDocs source | |
oam:features/ | feature bundles → nexus | Feature bundles | ci-management/jjb./oam/oam-features.yaml oam-features-maven-verify-master-mvn35-openjdk8 |
oam:parent/ | feature parent bundles → nexus | Parents depending on ONAP Parents | ci-management/jjb/oam/oam-parent.yaml |
scp/oam/modeling:features/ | feature bundles → nexus | yang model related contributions | |
oam:info.yaml | ci-management/jjb/oam/oam.yaml |
Artifacts groupId "org.o-ran-sc.oam.features".
List of all artifacts as provided under this group
org.o-ran-sc.oam.features ├── devicemanager │ ├── devicemanager-oran-ru-fh-feature │ ├── devicemanager-oran-ru-fh-installer │ ├── devicemanager-oran-ru-fh-model │ ├── devicemanager-oran-ru-fh-provider │ ├── devicemanager-oran-ru-fh-top │ ├── devicemanager-xran-ru-fh-feature │ ├── devicemanager-xran-ru-fh-installer │ ├── devicemanager-xran-ru-fh-model │ ├── devicemanager-xran-ru-fh-provider │ └── devicemanager-xran-ru-fh-top ├── features-top │ ├── 0.7.1-SNAPSHOT │ └── maven-metadata-local.xml └── parent ├── binding-parent ├── odlparent-lite ├── parent-top └── single-feature-parent
Directory oam:features containing specific devicemanagers
devicemanager - top level for devicemanager
- o-ran - Open RAN standard
- ru-fh - device related radio unit - front haule
- x-ran - X RAN standard
- ru-fh - radio unit - front haule
Artifact ids
Using ONAP Frankfurt
Example with devicemanager xran/ru-fh for top pom file.
<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> <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>odlparent-lite</artifactId> <version>1.5.2-SNAPSHOT</version> <relativePath/> </parent> <groupId>org.o-ran-sc.oam.features.devicemanager</groupId> <artifactId>devicemanager-oran-ru-fh-top</artifactId> <version>0.7.1-SNAPSHOT</version> <packaging>pom</packaging> <name>o-ran-sc-features :: ${project.artifactId}</name> <properties> <feature-name>devicemanager-oran-ru-fh</feature-name> </properties> <modules> <module>model</module> <module>provider</module> <module>feature</module> <module>installer</module> </modules> </project>