...
How to Include yang-parser in your Project
1. Maven: Include the “oran-public” repository in your settings.xml
Create a profile for the oran public “oran-public” repository
Expand | |||||
---|---|---|---|---|---|
| |||||
|
...
Code Block |
---|
<dependency> <groupId>org.oran.smo.yangtools.parser</groupId> <artifactId>yang-parser-jar</artifactId> <version>1.1.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/yang-parser-jar-1.1.0.jar</systemPath> </dependency> |
Sample project using “yang-
...
parser 1.0”
This small sample project should provide enough information to help you start using yang-parser in your project.
...