...
SDNC uses the same procedures as CCSDK to create the Docker image. The relevant repository is sdnc/oam, and the Docker image is created in sdnc/oam/installation/sdnc/. The pom.xlm file operates in the same way as the CCSDK counterpart and gathers the features specified in the "dependencies" section, shown here (master branch, Oct 30, 20152018).
Code Block |
---|
<dependencies> <dependency> <groupId>org.onap.sdnc.northbound</groupId> <artifactId>generic-resource-api-installer</artifactId> <version>${sdnc.northbound.version}</version> <classifier>repo</classifier> <type>zip</type> </dependency> <dependency> <groupId>org.onap.sdnc.northbound</groupId> <artifactId>vnfapi-installer</artifactId> <version>${sdnc.northbound.version}</version> <classifier>repo</classifier> <type>zip</type> </dependency> <dependency> <groupId>org.onap.sdnc.northbound</groupId> <artifactId>vnftools-installer</artifactId> <version>${sdnc.northbound.version}</version> <classifier>repo</classifier> <type>zip</type> </dependency> <dependency> <groupId>org.onap.sdnc.northbound</groupId> <artifactId>sdnc-northbound-features-installer</artifactId> <version>${sdnc.northbound.version}</version> <classifier>repo</classifier> <type>zip</type> </dependency> </dependencies> |
...