blob: f0e41176cb10fd327a3cab3722a7dd15970ab62c [file] [log] [blame]
Jonathan Hart039d2b12014-10-10 09:33:04 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
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 Hart039d2b12014-10-10 09:33:04 -070020<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 Hartdc711bd2014-10-15 11:24:23 -070023 <modelVersion>4.0.0</modelVersion>
Jonathan Hart039d2b12014-10-10 09:33:04 -070024
Jonathan Hartdc711bd2014-10-15 11:24:23 -070025 <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 Hart039d2b12014-10-10 09:33:04 -070031
Jonathan Hartdc711bd2014-10-15 11:24:23 -070032 <artifactId>onos-app-sdnip</artifactId>
33 <packaging>bundle</packaging>
Jonathan Hart039d2b12014-10-10 09:33:04 -070034
Jonathan Hartdc711bd2014-10-15 11:24:23 -070035 <description>SDN-IP peering application</description>
Jonathan Hart039d2b12014-10-10 09:33:04 -070036
Jonathan Hartdc711bd2014-10-15 11:24:23 -070037 <dependencies>
38 <dependency>
Jonathan Hartd7bd9822014-10-20 18:18:02 -070039 <groupId>com.fasterxml.jackson.core</groupId>
40 <artifactId>jackson-databind</artifactId>
Jonathan Hartdc711bd2014-10-15 11:24:23 -070041 </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 Hart335ef462014-10-16 08:20:46 -070053
54 <dependency>
55 <groupId>org.onlab.onos</groupId>
56 <artifactId>onlab-thirdparty</artifactId>
57 </dependency>
58
Jonathan Hart20d8e512014-10-16 11:05:52 -070059 <dependency>
60 <groupId>org.onlab.onos</groupId>
61 <artifactId>onlab-misc</artifactId>
62 </dependency>
63
64 <dependency>
Jonathan Hart0b04bed2014-10-16 16:39:19 -070065 <groupId>org.onlab.onos</groupId>
Pavlin Radoslavovd26f57a2014-10-23 17:19:45 -070066 <artifactId>onlab-junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onlab.onos</groupId>
Jonathan Hart0b04bed2014-10-16 16:39:19 -070072 <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 Hart20d8e512014-10-16 11:05:52 -070085 <groupId>org.easymock</groupId>
86 <artifactId>easymock</artifactId>
87 <scope>test</scope>
88 </dependency>
Jonathan Hartdc711bd2014-10-15 11:24:23 -070089 </dependencies>
Jonathan Hart039d2b12014-10-10 09:33:04 -070090
91</project>