blob: fc1628b9f49e60c48ad3a29cb59ead36a8e0dfae [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 -->
16<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-yang-plugins</artifactId>
23 <version>1.9-SNAPSHOT</version>
24 </parent>
25
26 <artifactId>onos-yang-buck-plugin</artifactId>
27 <packaging>jar</packaging>
28
29 <dependencies>
30 <dependency>
31 <groupId>org.onosproject</groupId>
32 <artifactId>buck-api</artifactId>
33 <version>0.1-SNAPSHOT</version>
34 <scope>provided</scope>
35 </dependency>
36 </dependencies>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-shade-plugin</artifactId>
43 <version>2.4.3</version>
44 <executions>
45 <execution>
46 <phase>package</phase>
47 <goals>
48 <goal>shade</goal>
49 </goals>
50 </execution>
51 </executions>
52 <configuration>
53 <artifactSet>
54 <excludes>
55 <exclude>com.google.guava:guava</exclude>
56 </excludes>
57 </artifactSet>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>