Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Step 1: Import Dependency Versions

Option 1.A: Inherit from O-Parent

The managed package versions are automatically imported into your project poms if you inherit from the latest version of oparent: O-Parent (oparent).  Most ONAP projects should implement this option.

...

Code Block
<parent>
    <groupId>org.onap.oparent</groupId>
    <artifactId>oparent</artifactId>
    <version>1.2.0</version>
    <relativePath/>
</parent>


Option

...

1.B: Manually Import Dependency Versions

If your project has specific technical reasons that prevents it from being able to inherit from O-Parent (e.g. CCSDK), you can manually import the dependency versions.  To do so:

...