Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | 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] | 5 | <modelVersion>4.0.0</modelVersion> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 6 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 7 | <parent> |
| 8 | <groupId>org.onlab.onos</groupId> |
| 9 | <artifactId>onos-apps</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 13 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 14 | <artifactId>onos-app-sdnip</artifactId> |
| 15 | <packaging>bundle</packaging> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 16 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 17 | <description>SDN-IP peering application</description> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 18 | |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 19 | <dependencies> |
| 20 | <dependency> |
Jonathan Hart | d7bd982 | 2014-10-20 18:18:02 -0700 | [diff] [blame] | 21 | <groupId>com.fasterxml.jackson.core</groupId> |
| 22 | <artifactId>jackson-databind</artifactId> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>com.fasterxml.jackson.core</groupId> |
| 26 | <artifactId>jackson-annotations</artifactId> |
| 27 | <version>2.4.2</version> |
| 28 | <scope>provided</scope> |
| 29 | </dependency> |
| 30 | |
| 31 | <dependency> |
| 32 | <groupId>com.google.guava</groupId> |
| 33 | <artifactId>guava</artifactId> |
| 34 | </dependency> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 35 | |
| 36 | <dependency> |
| 37 | <groupId>org.onlab.onos</groupId> |
| 38 | <artifactId>onlab-thirdparty</artifactId> |
| 39 | </dependency> |
| 40 | |
Jonathan Hart | 20d8e51 | 2014-10-16 11:05:52 -0700 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>org.onlab.onos</groupId> |
| 43 | <artifactId>onlab-misc</artifactId> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 47 | <groupId>org.onlab.onos</groupId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 48 | <artifactId>onlab-junit</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.onlab.onos</groupId> |
Jonathan Hart | 0b04bed | 2014-10-16 16:39:19 -0700 | [diff] [blame] | 54 | <artifactId>onos-cli</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.karaf.shell</groupId> |
| 59 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.osgi</groupId> |
| 63 | <artifactId>org.osgi.core</artifactId> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
Jonathan Hart | 20d8e51 | 2014-10-16 11:05:52 -0700 | [diff] [blame] | 67 | <groupId>org.easymock</groupId> |
| 68 | <artifactId>easymock</artifactId> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
Jonathan Hart | dc711bd | 2014-10-15 11:24:23 -0700 | [diff] [blame] | 71 | </dependencies> |
Jonathan Hart | 039d2b1 | 2014-10-10 09:33:04 -0700 | [diff] [blame] | 72 | |
| 73 | </project> |