blob: 2b13e1437cef04ac762afcadda1374732e6322f2 [file] [log] [blame]
kmcpeake4fe18c82015-11-17 20:07:39 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
kmcpeakeb172d5f2015-12-10 11:30:43 +00003~ Copyright 2015 Open Networking Laboratory
4~
5~ Licensed under the Apache License, Version 2.0 (the "License");
6~ you may not use this file except in compliance with the License.
7~ You may obtain a copy of the License at
8~
9~ http://www.apache.org/licenses/LICENSE-2.0
10~
11~ Unless required by applicable law or agreed to in writing, software
12~ distributed under the License is distributed on an "AS IS" BASIS,
13~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14~ See the License for the specific language governing permissions and
15~ limitations under the License.
16-->
kmcpeake4fe18c82015-11-17 20:07:39 +000017<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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-snmp-providers</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.0-SNAPSHOT</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-snmp-provider-alarm</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS SNMP protocol alarm provider</description>
33
kmcpeakeb172d5f2015-12-10 11:30:43 +000034 <dependencies>
35 <dependency>
36 <groupId>com.btisystems</groupId>
37 <artifactId>snmp-core</artifactId>
38 <version>1.3-SNAPSHOT</version>
39 </dependency>
40
41 <dependency>
42 <groupId>com.btisystems.mibbler.mibs</groupId>
43 <artifactId>bti7000</artifactId>
44 <version>1.0-SNAPSHOT</version>
45 </dependency>
46
47 <dependency>
48 <groupId>com.btisystems.mibbler.mibs</groupId>
49 <artifactId>net-snmp</artifactId>
50 <version>1.0-SNAPSHOT</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.osgi</groupId>
55 <artifactId>org.osgi.compendium</artifactId>
56 <version>5.0.0</version>
57 <type>jar</type>
58 </dependency>
59
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-api</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65
66
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onlab-osgi</artifactId>
77 <version>${project.version}</version>
78 <classifier>tests</classifier>
79 <scope>test</scope>
80 </dependency>
81
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-api</artifactId>
85 <version>${project.version}</version>
86 <classifier>tests</classifier>
87 <scope>test</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <version>4.11</version>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.hamcrest</groupId>
98 <artifactId>hamcrest-core</artifactId>
99 <version>1.3</version>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.hamcrest</groupId>
104 <artifactId>hamcrest-library</artifactId>
105 <version>1.3</version>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.easymock</groupId>
110 <artifactId>easymock</artifactId>
111 <scope>test</scope>
112 </dependency>
113 </dependencies>
114
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-shade-plugin</artifactId>
120 <version>2.3</version>
121 <configuration>
122 <filters>
123 <filter>
124 <artifact>com.btisystems:snmp-core</artifact>
125 <excludes>
126 <exclude>**</exclude>
127 </excludes>
128 </filter>
129 <filter>
130 <artifact>com.btisystems.mibbler.mibs:bti7000</artifact>
131 <excludes>
132 <exclude>**</exclude>
133 </excludes>
134 </filter>
135 <filter>
136 <artifact>com.btisystems.mibbler.mibs:net-snmp</artifact>
137 <excludes>
138 <exclude>**</exclude>
139 </excludes>
140 </filter>
141 </filters>
142 </configuration>
143 <executions>
144 <execution>
145 <phase>package</phase>
146 <goals>
147 <goal>shade</goal>
148 </goals>
149 </execution>
150 </executions>
151 </plugin>
152 <plugin>
153 <groupId>org.apache.felix</groupId>
154 <artifactId>maven-scr-plugin</artifactId>
155 </plugin>
156 <plugin>
157 <groupId>org.apache.felix</groupId>
158 <artifactId>maven-bundle-plugin</artifactId>
159 </plugin>
160 <plugin>
161 <groupId>org.onosproject</groupId>
162 <artifactId>onos-maven-plugin</artifactId>
163 </plugin>
164 </plugins>
165 </build>
166</project>