blob: 85e3aa07eafe26c658215ae3315ba81d70683a8d [file] [log] [blame]
VinodKumarS-Huawei618fdfa2016-11-14 11:50:48 +05301<!--
2 ~ Copyright 2016-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
17
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.onosproject</groupId>
25 <artifactId>onos-yang-plugins</artifactId>
Ray Milkey2e53d642016-11-22 11:52:31 -080026 <version>1.10</version>
VinodKumarS-Huawei618fdfa2016-11-14 11:50:48 +053027 </parent>
28
29 <artifactId>onos-yang-tool</artifactId>
Ray Milkey2e53d642016-11-22 11:52:31 -080030 <version>1.10</version>
VinodKumarS-Huawei618fdfa2016-11-14 11:50:48 +053031 <packaging>jar</packaging>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.slf4j</groupId>
36 <artifactId>slf4j-api</artifactId>
37 <version>1.7.21</version>
38 <scope>provided</scope>
39 </dependency>
40 </dependencies>
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-jar-plugin</artifactId>
46 <version>3.0.2</version>
47 <configuration>
48 <skipIfEmpty>true</skipIfEmpty>
49 </configuration>
50 <executions>
51 <execution>
52 <id>default</id>
53 <goals>
54 <goal>test-jar</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61</project>