blob: ca28572f0263d3153804df2888e8cad689bcc7db [file] [log] [blame]
janani bf7060cd2017-03-28 19:06:30 +05301<?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>
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>
28
29 <parent>
30 <groupId>org.onosproject</groupId>
31 <artifactId>onos-drivers-huawei</artifactId>
32 <version>1.10.0-SNAPSHOT</version>
33 <relativePath>../pom.xml</relativePath>
34 </parent>
35
36 <artifactId>onos-drivers-huawei-yangmodel</artifactId>
37 <packaging>bundle</packaging>
38
39 <description>Huawei L3VPN YANG model</description>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-yang-compiler-maven-plugin</artifactId>
46 <version>1.12.0-b7</version>
47 <executions>
48 <execution>
49 <goals>
50 <goal>yang2java</goal>
51 </goals>
52 </execution>
53 </executions>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-compiler-plugin</artifactId>
58 <configuration>
59 <source>1.7</source>
60 <target>1.7</target>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65
66</project>