Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 2 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 3 | ~ Copyright 2014 Open Networking Laboratory |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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 |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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. |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 16 | --> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [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"> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 21 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onlab.onos</groupId> |
| 24 | <artifactId>onos-apps</artifactId> |
| 25 | <version>1.0.0-SNAPSHOT</version> |
| 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 28 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 29 | <artifactId>onos-app-sdnip</artifactId> |
| 30 | <packaging>bundle</packaging> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 31 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 32 | <description>SDN-IP peering application</description> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 33 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
Jonathan Hart | d7bd982 | 2014-10-20 18:18:02 -0700 | [diff] [blame] | 36 | <groupId>com.fasterxml.jackson.core</groupId> |
| 37 | <artifactId>jackson-databind</artifactId> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>com.fasterxml.jackson.core</groupId> |
| 41 | <artifactId>jackson-annotations</artifactId> |
| 42 | <version>2.4.2</version> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>com.google.guava</groupId> |
| 48 | <artifactId>guava</artifactId> |
| 49 | </dependency> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 50 | |
| 51 | <dependency> |
Pavlin Radoslavov | a7243cc | 2014-11-22 21:38:02 -0800 | [diff] [blame] | 52 | <groupId>org.apache.commons</groupId> |
| 53 | <artifactId>commons-collections4</artifactId> |
| 54 | <version>4.0</version> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 58 | <groupId>org.onlab.onos</groupId> |
| 59 | <artifactId>onlab-thirdparty</artifactId> |
| 60 | </dependency> |
| 61 | |
Jonathan Hart | 20d8e51 | 2014-10-16 11:05:52 -0700 | [diff] [blame] | 62 | <dependency> |
| 63 | <groupId>org.onlab.onos</groupId> |
| 64 | <artifactId>onlab-misc</artifactId> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 68 | <groupId>org.onlab.onos</groupId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 69 | <artifactId>onlab-junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.onlab.onos</groupId> |
Brian O'Connor | 520c052 | 2014-11-23 23:50:47 -0800 | [diff] [blame] | 75 | <artifactId>onos-api</artifactId> |
| 76 | <version>${project.version}</version> |
| 77 | <scope>test</scope> |
| 78 | <classifier>tests</classifier> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.onlab.onos</groupId> |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 83 | <artifactId>onos-cli</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
Pavlin Radoslavov | a7243cc | 2014-11-22 21:38:02 -0800 | [diff] [blame] | 86 | |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>org.apache.karaf.shell</groupId> |
| 89 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 90 | </dependency> |
Pavlin Radoslavov | a7243cc | 2014-11-22 21:38:02 -0800 | [diff] [blame] | 91 | |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>org.osgi</groupId> |
| 94 | <artifactId>org.osgi.core</artifactId> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
Jonathan Hart | 20d8e51 | 2014-10-16 11:05:52 -0700 | [diff] [blame] | 98 | <groupId>org.easymock</groupId> |
| 99 | <artifactId>easymock</artifactId> |
| 100 | <scope>test</scope> |
| 101 | </dependency> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 102 | </dependencies> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 103 | |
| 104 | </project> |