blob: 005b2a770c174ddf4b5433afbe17dd1149beebcb [file] [log] [blame]
Gaurav Agrawala599a8f2017-01-10 20:45:27 +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-compiler-base</artifactId>
26 <version>1.12-SNAPSHOT</version>
27 </parent>
28
29 <artifactId>onos-yang-compiler-tool</artifactId>
30 <version>1.12-SNAPSHOT</version>
31 <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 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-yang-compiler-datamodel</artifactId>
43 <version>1.12-SNAPSHOT</version>
44 </dependency>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-yang-compiler-translator</artifactId>
48 <version>1.12-SNAPSHOT</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-yang-compiler-linker</artifactId>
53 <version>1.12-SNAPSHOT</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-yang-compiler-utils</artifactId>
58 <version>1.12-SNAPSHOT</version>
59 </dependency>
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-yang-compiler-parser</artifactId>
63 <version>1.12-SNAPSHOT</version>
64 </dependency>
65 </dependencies>
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-jar-plugin</artifactId>
71 <version>3.0.2</version>
72 <configuration>
73 <skipIfEmpty>true</skipIfEmpty>
74 </configuration>
75 <executions>
76 <execution>
77 <id>default</id>
78 <goals>
79 <goal>test-jar</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86</project>