blob: 981b90026abbb079052e070a229028026a6da388 [file] [log] [blame]
Timoney, Dan (dt5972)fc713292018-12-20 14:53:11 -05001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoneyc3342a02017-09-05 20:33:51 -04002<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">
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -05003 <modelVersion>4.0.0</modelVersion>
Dan Timoneyc3342a02017-09-05 20:33:51 -04004
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Dan Timoney6f262132020-06-24 08:10:51 -04008 <version>1.5.10-SNAPSHOT</version>
Timoney, Dan (dt5972)fc713292018-12-20 14:53:11 -05009 <relativePath/>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050010 </parent>
Dan Timoneyc3342a02017-09-05 20:33:51 -040011
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050012 <groupId>org.onap.sdnc.northbound</groupId>
13 <artifactId>generic-resource-api-model</artifactId>
Dan Timoney3c53e4b2020-05-07 10:53:37 -040014 <version>1.8.2-SNAPSHOT</version>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050015 <packaging>bundle</packaging>
Dan Timoneyc3342a02017-09-05 20:33:51 -040016
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050017 <name>sdnc-northbound :: generic-resource-api :: ${project.artifactId}</name>
Dan Timoneyc3342a02017-09-05 20:33:51 -040018
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050019 <dependencies>
20 <dependency>
Timoney, Dan (dt5972)58b88df2019-08-16 10:10:33 -040021 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
22 <artifactId>rfc6991</artifactId>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050023 </dependency>
Timoney, Dan (dt5972)58b88df2019-08-16 10:10:33 -040024
25
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050026 </dependencies>
Dan Timoneyc3342a02017-09-05 20:33:51 -040027
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050028 <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>
Dan Timoneyc3342a02017-09-05 20:33:51 -040052 </plugins>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050053 </build>
Dan Timoneyc3342a02017-09-05 20:33:51 -040054</project>