tom | 0755a36 | 2014-09-24 11:54:43 -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 | --> |
tom | 0755a36 | 2014-09-24 11:54:43 -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"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 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> |
| 28 | |
| 29 | <artifactId>onos-app-foo</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>ONOS application for miscellaneous experiments</description> |
| 33 | |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onlab.onos</groupId> |
| 37 | <artifactId>onos-cli</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onlab.onos</groupId> |
pankaj | 600bb24 | 2014-10-07 15:41:06 -0700 | [diff] [blame] | 42 | <artifactId>onlab-osgi</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onlab.onos</groupId> |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 47 | <artifactId>onlab-nio</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
pankaj | f49b45e | 2014-10-07 14:24:22 -0700 | [diff] [blame] | 51 | <groupId>org.onlab.onos</groupId> |
| 52 | <artifactId>onlab-netty</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 56 | <groupId>org.apache.karaf.shell</groupId> |
| 57 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 58 | </dependency> |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.onlab.onos</groupId> |
| 61 | <artifactId>onlab-misc</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>com.google.guava</groupId> |
| 65 | <artifactId>guava</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.osgi</groupId> |
| 69 | <artifactId>org.osgi.core</artifactId> |
| 70 | </dependency> |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 71 | </dependencies> |
tom | 0755a36 | 2014-09-24 11:54:43 -0700 | [diff] [blame] | 72 | </project> |