Dan Timoney | 8917e02 | 2020-04-28 14:58:11 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>binding-parent</artifactId> |
Dan Timoney | 97fe57b | 2020-10-30 07:56:23 -0400 | [diff] [blame] | 8 | <version>2.0.2</version> |
Dan Timoney | 8917e02 | 2020-04-28 14:58:11 -0400 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.sdnc.northbound</groupId> |
| 13 | <artifactId>generic-resource-api-model-yang</artifactId> |
Dan Timoney | 1fe472e | 2020-09-11 14:24:09 -0400 | [diff] [blame] | 14 | <version>2.0.2-SNAPSHOT</version> |
Dan Timoney | 8917e02 | 2020-04-28 14:58:11 -0400 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <name>sdnc-northbound :: generic-resource-api :: ${project.artifactId}</name> |
| 18 | |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId> |
| 22 | <artifactId>rfc6991</artifactId> |
| 23 | </dependency> |
| 24 | |
| 25 | |
| 26 | </dependencies> |
| 27 | |
| 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.codehaus.mojo</groupId> |
| 32 | <artifactId>exec-maven-plugin</artifactId> |
| 33 | <version>1.2.1</version> |
| 34 | <executions> |
| 35 | <execution> |
| 36 | <configuration> |
| 37 | <executable>python</executable> |
| 38 | <arguments> |
| 39 | <argument>scripts/python/yang2props.py</argument> |
| 40 | <argument>src/main/yang/GENERIC-RESOURCE-API.yang</argument> |
| 41 | <argument>target/generic-resource-api.properties</argument> |
| 42 | </arguments> |
| 43 | </configuration> |
| 44 | <id>generation</id> |
| 45 | <phase>generate-resources</phase> |
| 46 | <goals> |
| 47 | <goal>exec</goal> |
| 48 | </goals> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | </project> |