DRAFT
This page describes how to get and build the Jakarta Kohn release version of A1-Policy functions.
...
Java 11 JDK (make sure that JAVA_HOME environment variable points to correct Java version)
Maven 3.68.3+
Docker and docker-compose (latest)
- Python
Build Code
- Note 1: While instructions to build the artifacts are included below, pre-built versions are available as Docker Images in http://nexus3.onap.org
- Building the code should only be attempted if you really need to, or wish in incorporate some change; it is much easier to use the pre-built versions.
- Note 2: Before attempting to retrieve or build any ONAP component please follow the instructions for Setting Up Your Development Environment
- Note 3: After re-building run the functions by following instructions at Kohn - Run - but note the version numbers of the newly-built functions may be slightly different from the pre-built versions.
- Version numbers used in this page may not be the most recent ... you should verify version numbers of your newly built component, and check for latest versions of pre-built components
...
Project | Repo | Gerrit Link | Command | Note |
---|---|---|---|---|
CCSDK | ccsdk/parent | git clone "https://gerrit.onap.org/r/ccsdk/parent" -b kohn | mvn clean install -Dmaven.test.skip=true | If the parent artifacts are not yet released you need to build this repo in order to build other any other ccsdk repos (Including ccsdk/oran/a1-adapter ) |
CCSDK | ccsdk/features | git clone "https://gerrit.onap.org/r/ccsdk/features" -b kohn | mvn clean install -Dmaven.test.skip=true | |
CCSDK | ccsdk/distribution | git clone "https://gerrit.onap.org/r/ccsdk/distribution" -b kohn | mvn clean install -Dmaven.test.skip=true -Pdocker | Creates the CCSDK docker image |
SDNC | sdnc/northbound | git clone "https://gerrit.onap.org/r/sdnc/northbound" -b kohn | mvn clean install -Dmaven.test.skip=true | |
SDNC | sdnc/oam | git clone "https://gerrit.onap.org/r/sdnc/oam" -b kohn | mvn clean install -Dmaven.test.skip=true -Pdocker | Creates the SDNC docker image. Make sure you refer to the appropriate docker image version/tag in the pom file, e.g., you may need to update ccsdk.docker.version for onap/ccsdk-ansible-server-image from 1.4.12-STAGING-latest to 1.4.12-SNAPSHOT-latest to refer to the latest newly built versions.(You should double check the docker tag/versions corresponds to the latest released versions and the version you've just built.) |
...