blob: cb401e297dd0476f2f1d94a8080ee9fa0423a1ba [file] [log] [blame]
Gaurav Agrawal69cded12017-02-04 10:23:50 +05301<!--
sonugupta-huaweiaa6791e2017-02-09 12:38:43 +05302 ~ 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.
Gaurav Agrawal69cded12017-02-04 10:23:50 +053015 -->
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>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053021
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-yang-runtime</artifactId>
Ray Milkeyb48ecb82017-02-09 13:34:00 -080025 <version>1.12-SNAPSHOT</version>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053026 </parent>
27
28 <artifactId>onos-yang-runtime-uils</artifactId>
29 <packaging>jar</packaging>
30
Gaurav Agrawal69cded12017-02-04 10:23:50 +053031 <dependencies>
32 <dependency>
33 <groupId>org.onosproject</groupId>
34 <artifactId>onos-yang-model</artifactId>
Ray Milkeyb48ecb82017-02-09 13:34:00 -080035 <version>1.12-SNAPSHOT</version>
Gaurav Agrawal69cded12017-02-04 10:23:50 +053036 </dependency>
37 <dependency>
38 <groupId>org.onosproject</groupId>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053039 <artifactId>onos-yang-compiler-api</artifactId>
Ray Milkeyb48ecb82017-02-09 13:34:00 -080040 <version>1.12-SNAPSHOT</version>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053041 </dependency>
42 <dependency>
43 <groupId>org.onosproject</groupId>
Gaurav Agrawal69cded12017-02-04 10:23:50 +053044 <artifactId>onos-yang-runtime-api</artifactId>
Ray Milkeyb48ecb82017-02-09 13:34:00 -080045 <version>1.12-SNAPSHOT</version>
Gaurav Agrawal69cded12017-02-04 10:23:50 +053046 </dependency>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-yang-compiler-plugin-utils</artifactId>
Ray Milkeyb48ecb82017-02-09 13:34:00 -080050 <version>1.12-SNAPSHOT</version>
sonugupta-huawei9c2be322017-02-04 13:21:59 +053051 </dependency>
Gaurav Agrawal69cded12017-02-04 10:23:50 +053052 </dependencies>
Gaurav Agrawal69cded12017-02-04 10:23:50 +053053 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-jar-plugin</artifactId>
58 <version>3.0.2</version>
59 <configuration>
60 <skipIfEmpty>true</skipIfEmpty>
61 </configuration>
62 <executions>
63 <execution>
64 <id>default</id>
65 <goals>
66 <goal>test-jar</goal>
67 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 </plugins>
72 </build>
73</project>