This page discusses how to on-board Java-based web application to the ONAP Portal using (epsdk-fw-x.x.x.jar) library that is developed by the ONAP Portal development team (under repo - https://gerrit.onap.org/r/admin/repos/portal/sdk).
The following link will let you browse "final release versions" in the nexus repository: https://nexus.onap.org/content/repositories/releases/org/onap/portal/sdk/epsdk-fw/
Maven users will also need to add the following repositories to the pom.xml file:
Code Block |
---|
<repositories>
<repository>
<id>onap-releases</id>
<name>ONAP - Release Repository</name>
<url>https://nexus.onap.org/content/repositories/releases</url>
</repository>
</repositories> |
Maven users should use the following dependency in their project's pom.xml file (better with exclusions):
...