blob: e313b12883cc7bac7fde8c7dfc42689ab93a6533 [file] [log] [blame]
Ray Milkeyffd9ef82016-10-06 16:58:16 -07001<!--
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 -->
Bharat saraswal94844d62016-10-13 13:28:03 +053016<project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Ray Milkeyffd9ef82016-10-06 16:58:16 -070018 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-plugins</artifactId>
Brian O'Connora3b11ac2016-10-18 14:04:15 -070024 <version>1.9</version>
Ray Milkeyffd9ef82016-10-06 16:58:16 -070025 </parent>
26
27 <artifactId>onos-yang-buck-plugin</artifactId>
28 <packaging>jar</packaging>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.onosproject</groupId>
33 <artifactId>buck-api</artifactId>
34 <version>0.1-SNAPSHOT</version>
35 <scope>provided</scope>
36 </dependency>
37 </dependencies>
38
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-shade-plugin</artifactId>
44 <version>2.4.3</version>
45 <executions>
46 <execution>
47 <phase>package</phase>
48 <goals>
49 <goal>shade</goal>
50 </goals>
51 </execution>
52 </executions>
53 <configuration>
54 <artifactSet>
55 <excludes>
56 <exclude>com.google.guava:guava</exclude>
57 </excludes>
58 </artifactSet>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63</project>