kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 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 | --> |
| 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> |
Ray Milkey | f009902 | 2017-05-02 14:35:27 -0700 | [diff] [blame^] | 25 | <version>1.10.0-rc1</version> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 26 | </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 Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 38 | <dependency> |
| 39 | <groupId>org.onosproject</groupId> |
| 40 | <artifactId>onos-snmp-api</artifactId> |
Thomas Vachuska | 0439fd7 | 2017-03-24 10:05:39 -0700 | [diff] [blame] | 41 | <version>${project.version}</version> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.onosproject</groupId> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 45 | <artifactId>onos-snmp-ctl</artifactId> |
Thomas Vachuska | 0439fd7 | 2017-03-24 10:05:39 -0700 | [diff] [blame] | 46 | <version>${project.version}</version> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 47 | </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 Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 59 | <dependency> |
Brian O'Connor | dedf24c | 2016-10-24 00:41:40 -0700 | [diff] [blame] | 60 | <groupId>org.onosproject</groupId> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 61 | <artifactId>snmp-core</artifactId> |
Brian O'Connor | dedf24c | 2016-10-24 00:41:40 -0700 | [diff] [blame] | 62 | <version>1.3-20161021.1</version> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
Brian O'Connor | dedf24c | 2016-10-24 00:41:40 -0700 | [diff] [blame] | 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>mibbler-mibs-bti7000</artifactId> |
| 68 | <version>1.0-20151221.1</version> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
Brian O'Connor | dedf24c | 2016-10-24 00:41:40 -0700 | [diff] [blame] | 72 | <groupId>org.onosproject</groupId> |
| 73 | <artifactId>mibbler-mibs-net-snmp</artifactId> |
| 74 | <version>1.0-20151221.1</version> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.onosproject</groupId> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 78 | <artifactId>onos-core-net</artifactId> |
Andrea Campanella | e72ac55 | 2016-04-11 10:04:52 -0700 | [diff] [blame] | 79 | <version>${project.version}</version> |
Andrea Campanella | c2d754b | 2016-03-29 17:51:07 -0700 | [diff] [blame] | 80 | </dependency> |
Andrea Campanella | 58454b9 | 2016-04-01 15:19:00 -0700 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
| 83 | <artifactId>onos-api</artifactId> |
Andrea Campanella | 58454b9 | 2016-04-01 15:19:00 -0700 | [diff] [blame] | 84 | <classifier>tests</classifier> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 87 | </dependencies> |
Andrea Campanella | 58454b9 | 2016-04-01 15:19:00 -0700 | [diff] [blame] | 88 | <build> |
| 89 | <plugins> |
| 90 | <plugin> |
| 91 | <groupId>org.apache.felix</groupId> |
| 92 | <artifactId>maven-scr-plugin</artifactId> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 96 | </project> |