blob: 993e9395fbf52a5e02a0dd6d4441e38c5811f604 [file] [log] [blame]
kmcpeakeb172d5f2015-12-10 11:30:43 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
kmcpeakeb172d5f2015-12-10 11:30:43 +00004 ~
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-->
17<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'Connorbfc02ec2016-09-16 00:42:37 -070025 <version>1.8.0-SNAPSHOT</version>
kmcpeakeb172d5f2015-12-10 11:30:43 +000026 </parent>
27
28 <artifactId>onos-snmp-provider-device</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>ONOS SNMP protocol device provider</description>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.osgi</groupId>
36 <artifactId>org.osgi.compendium</artifactId>
37 </dependency>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070038 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-snmp-api</artifactId>
Brian O'Connorbfc02ec2016-09-16 00:42:37 -070041 <version>1.8.0-SNAPSHOT</version>
kmcpeakeb172d5f2015-12-10 11:30:43 +000042 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070045 <artifactId>onos-snmp-ctl</artifactId>
Brian O'Connorbfc02ec2016-09-16 00:42:37 -070046 <version>1.8.0-SNAPSHOT</version>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070047 </dependency>
48 <dependency>
49 <groupId>org.apache.servicemix.bundles</groupId>
50 <artifactId>org.apache.servicemix.bundles.snmp4j</artifactId>
51 <version>2.3.4_1</version>
52 <exclusions>
53 <exclusion>
54 <artifactId>log4j</artifactId>
55 <groupId>log4j</groupId>
56 </exclusion>
57 </exclusions>
58 </dependency>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070059 <dependency>
Brian O'Connordedf24c2016-10-24 00:41:40 -070060 <groupId>org.onosproject</groupId>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070061 <artifactId>snmp-core</artifactId>
Brian O'Connordedf24c2016-10-24 00:41:40 -070062 <version>1.3-20161021.1</version>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070063 </dependency>
64
65 <dependency>
Brian O'Connordedf24c2016-10-24 00:41:40 -070066 <groupId>org.onosproject</groupId>
67 <artifactId>mibbler-mibs-bti7000</artifactId>
68 <version>1.0-20151221.1</version>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070069 </dependency>
70
71 <dependency>
Brian O'Connordedf24c2016-10-24 00:41:40 -070072 <groupId>org.onosproject</groupId>
73 <artifactId>mibbler-mibs-net-snmp</artifactId>
74 <version>1.0-20151221.1</version>
kmcpeakeb172d5f2015-12-10 11:30:43 +000075 </dependency>
76 <dependency>
77 <groupId>org.onosproject</groupId>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070078 <artifactId>onos-core-net</artifactId>
Andrea Campanellae72ac552016-04-11 10:04:52 -070079 <version>${project.version}</version>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070080 </dependency>
Andrea Campanella58454b92016-04-01 15:19:00 -070081 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-api</artifactId>
Andrea Campanella58454b92016-04-01 15:19:00 -070084 <classifier>tests</classifier>
85 <scope>test</scope>
86 </dependency>
kmcpeakeb172d5f2015-12-10 11:30:43 +000087 </dependencies>
Andrea Campanella58454b92016-04-01 15:19:00 -070088 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-scr-plugin</artifactId>
93 </plugin>
94 </plugins>
95 </build>
kmcpeakeb172d5f2015-12-10 11:30:43 +000096</project>