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 | <!-- |
| 3 | ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | ~ or more contributor license agreements. See the NOTICE file |
| 5 | ~ distributed with this work for additional information |
| 6 | ~ regarding copyright ownership. The ASF licenses this file |
| 7 | ~ to you under the Apache License, Version 2.0 (the |
| 8 | ~ "License"); you may not use this file except in compliance |
| 9 | ~ with the License. You may obtain a copy of the License at |
| 10 | ~ |
| 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ~ |
| 13 | ~ Unless required by applicable law or agreed to in writing, |
| 14 | ~ software distributed under the License is distributed on an |
| 15 | ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | ~ KIND, either express or implied. See the License for the |
| 17 | ~ specific language governing permissions and limitations |
| 18 | ~ under the License. |
| 19 | --> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | 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] | 23 | <modelVersion>4.0.0</modelVersion> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 24 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onlab.onos</groupId> |
| 27 | <artifactId>onos-apps</artifactId> |
| 28 | <version>1.0.0-SNAPSHOT</version> |
| 29 | <relativePath>../pom.xml</relativePath> |
| 30 | </parent> |
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 | <artifactId>onos-app-sdnip</artifactId> |
| 33 | <packaging>bundle</packaging> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 34 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 35 | <description>SDN-IP peering application</description> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 36 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 37 | <dependencies> |
| 38 | <dependency> |
Jonathan Hart | d7bd982 | 2014-10-20 18:18:02 -0700 | [diff] [blame] | 39 | <groupId>com.fasterxml.jackson.core</groupId> |
| 40 | <artifactId>jackson-databind</artifactId> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>com.fasterxml.jackson.core</groupId> |
| 44 | <artifactId>jackson-annotations</artifactId> |
| 45 | <version>2.4.2</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>com.google.guava</groupId> |
| 51 | <artifactId>guava</artifactId> |
| 52 | </dependency> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onlab.onos</groupId> |
| 56 | <artifactId>onlab-thirdparty</artifactId> |
| 57 | </dependency> |
| 58 | |
Jonathan Hart | 20d8e51 | 2014-10-16 11:05:52 -0700 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.onlab.onos</groupId> |
| 61 | <artifactId>onlab-misc</artifactId> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 65 | <groupId>org.onlab.onos</groupId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 66 | <artifactId>onlab-junit</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>org.onlab.onos</groupId> |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 72 | <artifactId>onos-cli</artifactId> |
| 73 | <version>${project.version}</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.karaf.shell</groupId> |
| 77 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.osgi</groupId> |
| 81 | <artifactId>org.osgi.core</artifactId> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
Jonathan Hart | 20d8e51 | 2014-10-16 11:05:52 -0700 | [diff] [blame] | 85 | <groupId>org.easymock</groupId> |
| 86 | <artifactId>easymock</artifactId> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 89 | </dependencies> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 90 | |
| 91 | </project> |