kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 3 | ~ 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 | --> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 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'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 25 | <version>1.6.0-SNAPSHOT</version> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 26 | <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 | |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 34 | <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> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 56 | <type>jar</type> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-api</artifactId> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 62 | </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> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 75 | <classifier>tests</classifier> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onos-api</artifactId> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 82 | <classifier>tests</classifier> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>junit</groupId> |
| 88 | <artifactId>junit</artifactId> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.hamcrest</groupId> |
| 93 | <artifactId>hamcrest-core</artifactId> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 94 | <scope>test</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.hamcrest</groupId> |
| 98 | <artifactId>hamcrest-library</artifactId> |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 99 | <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> |
kmcpeake | 899ea8b | 2016-01-04 15:00:45 +0000 | [diff] [blame] | 110 | |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 111 | <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> |