blob: 462eb3aa1f5ec711a702b03f9cdd8ae5c635f8c1 [file] [log] [blame]
Gaurav Agrawalb1984662017-01-18 19:33:16 +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 Milkeyb48ecb82017-02-09 13:34:00 -080024 <version>1.12-SNAPSHOT</version>
Gaurav Agrawalb1984662017-01-18 19:33:16 +053025 </parent>
26
27 <artifactId>onos-yang-runtime-api</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-api</artifactId>
Ray Milkeyb48ecb82017-02-09 13:34:00 -080039 <version>1.12-SNAPSHOT</version>
Gaurav Agrawalb1984662017-01-18 19:33:16 +053040 </dependency>
41 </dependencies>
42
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <version>3.0.2</version>
49 <configuration>
50 <skipIfEmpty>true</skipIfEmpty>
51 </configuration>
52 <executions>
53 <execution>
54 <id>default</id>
55 <goals>
56 <goal>test-jar</goal>
57 </goals>
58 </execution>
59 </executions>
60 </plugin>
61 </plugins>
62 </build>
63</project>