blob: 32b0f64a36ec6734763f4632383bbfa471fffaec [file] [log] [blame]
sonugupta-huawei9c2be322017-02-04 13:21:59 +05301<!--
2 ~ Copyright 2017-present Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-yang-runtime</artifactId>
Ray Milkey47073f62017-02-08 14:04:25 -080024 <version>1.12-b1</version>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053025 </parent>
26
27 <artifactId>onos-yang-runtime-app</artifactId>
28 <packaging>jar</packaging>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.onosproject</groupId>
33 <artifactId>onos-yang-model</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-yang-compiler-datamodel</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-yang-runtime-api</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-yang-runtime-uils</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-yang-compiler-api</artifactId>
Ray Milkey47073f62017-02-08 14:04:25 -080054 <version>1.12-b1</version>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053055 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <version>RELEASE</version>
60 </dependency>
61 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-yang-compiler-maven-plugin</artifactId>
68 <version>${project.version}</version>
69 <configuration>
70 <yangFilesDir>src/test/resources</yangFilesDir>
71 </configuration>
72 <executions>
73 <execution>
74 <id>default</id>
75 <goals>
76 <goal>yang2java</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-jar-plugin</artifactId>
84 <version>3.0.2</version>
85 <configuration>
86 <skipIfEmpty>true</skipIfEmpty>
87 </configuration>
88 <executions>
89 <execution>
90 <id>default</id>
91 <goals>
92 <goal>test-jar</goal>
93 </goals>
94 </execution>
95 </executions>
96 </plugin>
97 </plugins>
98 </build>
99</project>