blob: 8fd8aed942459ade9bb3ca036ebff105006ea567 [file] [log] [blame]
Gaurav Agrawalc6d536f2017-03-17 11:56:31 +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
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-app-l3vpn</artifactId>
Ray Milkey8fd28c72017-05-02 14:37:34 -070025 <version>1.10.0-SNAPSHOT</version>
Gaurav Agrawalc6d536f2017-03-17 11:56:31 +053026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-l3vpn-yangmodel</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>IETF L3VPN YANG models</description>
Yuta HIGUCHIb4090322017-05-02 14:34:53 -070033
34 <properties>
35 <yang-tool-version>1.12.0-b7</yang-tool-version>
36 </properties>
37
38 <dependencies>
39
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-yang-datamodel</artifactId>
43 <version>1.11</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-yang-model</artifactId>
49 <version>${yang-tool-version}</version>
50 </dependency>
51
52 </dependencies>
53
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-yang-compiler-maven-plugin</artifactId>
59 <version>${yang-tool-version}</version>
60 <executions>
61 <execution>
62 <goals>
63 <goal>yang2java</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68
69 <plugin>
70 <groupId>org.codehaus.mojo</groupId>
71 <artifactId>build-helper-maven-plugin</artifactId>
72 <executions>
73 <execution>
74 <id>add-source</id>
75 <phase>generate-sources</phase>
76 <goals>
77 <goal>add-source</goal>
78 </goals>
79 <configuration>
80 <sources combine.children="append">
81 <source>${project.build.directory}/generated-sources/</source>
82 </sources>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87
88 </plugins>
89
90
91 </build>
Gaurav Agrawalc6d536f2017-03-17 11:56:31 +053092</project>