blob: 6b03c85003783b50aeae33b39b47d9b7e893707c [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>
Madan Jampani23696422016-03-09 14:02:04 -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>
kmcpeakeb172d5f2015-12-10 11:30:43 +000056 <type>jar</type>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
kmcpeakeb172d5f2015-12-10 11:30:43 +000062 </dependency>
63
64
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-junit</artifactId>
69 <scope>test</scope>
70 </dependency>
71
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onlab-osgi</artifactId>
kmcpeakeb172d5f2015-12-10 11:30:43 +000075 <classifier>tests</classifier>
76 <scope>test</scope>
77 </dependency>
78
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-api</artifactId>
kmcpeakeb172d5f2015-12-10 11:30:43 +000082 <classifier>tests</classifier>
83 <scope>test</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>junit</groupId>
88 <artifactId>junit</artifactId>
kmcpeakeb172d5f2015-12-10 11:30:43 +000089 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.hamcrest</groupId>
93 <artifactId>hamcrest-core</artifactId>
kmcpeakeb172d5f2015-12-10 11:30:43 +000094 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.hamcrest</groupId>
98 <artifactId>hamcrest-library</artifactId>
kmcpeakeb172d5f2015-12-10 11:30:43 +000099 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.easymock</groupId>
103 <artifactId>easymock</artifactId>
104 <scope>test</scope>
105 </dependency>
106 </dependencies>
107
108 <build>
109 <plugins>
kmcpeake899ea8b2016-01-04 15:00:45 +0000110
kmcpeakeb172d5f2015-12-10 11:30:43 +0000111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-scr-plugin</artifactId>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 </plugin>
119 <plugin>
120 <groupId>org.onosproject</groupId>
121 <artifactId>onos-maven-plugin</artifactId>
122 </plugin>
123 </plugins>
124 </build>
125</project>