Due to a ransomware attack, the wiki was reverted to a July 2022 version. . We apologize for the lack of a more recent valid backup.
...
YANG Utils are the basic building block to achieve the final goal of abstracting the language based Syntax/Semantics processing by APPs.
The YANG modeled interfaces need to be implemented by corresponding application component. There are 2 parts in implementing the interface:
...
Step 2 : Add dependency to pom file’s dependency section
| Code Block |
|---|
<dependencies> <dependency> <groupId>org.onosproject</groupId> <artifactId>yangutils-maven-plugin</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> </dependency> <dependency> <groupId>org.onosproject</groupId> <artifactId>onos-api</artifactId> </dependency> </dependencies> |
...
