Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2017-present Open Networking Laboratory |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
janani b | 176905a | 2017-03-28 17:36:18 +0530 | [diff] [blame] | 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-yang-model</artifactId> |
| 25 | <version>1.12.0-b7</version> |
| 26 | </dependency> |
| 27 | </dependencies> |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 28 | |
| 29 | <parent> |
| 30 | <groupId>org.onosproject</groupId> |
| 31 | <artifactId>onos-app-l3vpn</artifactId> |
| 32 | <version>1.10.0-SNAPSHOT</version> |
| 33 | <relativePath>../pom.xml</relativePath> |
| 34 | </parent> |
| 35 | |
| 36 | <artifactId>onos-app-l3vpn-yangmodel</artifactId> |
| 37 | <packaging>bundle</packaging> |
| 38 | |
| 39 | <description>IETF L3VPN YANG models</description> |
| 40 | |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.onosproject</groupId> |
janani b | f41dec3 | 2017-03-24 18:44:07 +0530 | [diff] [blame] | 45 | <artifactId>onos-yang-compiler-maven-plugin</artifactId> |
janani b | 36b1d77 | 2017-03-27 15:01:28 +0530 | [diff] [blame] | 46 | <version>1.12.0-b7</version> |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 47 | <executions> |
| 48 | <execution> |
| 49 | <goals> |
| 50 | <goal>yang2java</goal> |
| 51 | </goals> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | </plugins> |
| 56 | </build> |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 57 | </project> |