Zayne Khouja | 31da33a | 2016-06-16 11:57:12 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 0a4e674 | 2016-09-15 23:03:10 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
Zayne Khouja | 31da33a | 2016-06-16 11:57:12 -0700 | [diff] [blame] | 4 | ~ |
| 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 |
| 8 | ~ |
| 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. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | |
| 20 | <parent> |
| 21 | <groupId>org.onosproject</groupId> |
| 22 | <artifactId>onos-apps</artifactId> |
| 23 | <version>1.7.0-SNAPSHOT</version> |
| 24 | <relativePath>../pom.xml</relativePath> |
| 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-apps-learning-switch</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>Learning Switch Tutorial Implementation</description> |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <properties> |
| 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | <onos.app.name>org.onosproject.learningswitch</onos.app.name> |
| 36 | <onos.app.title>Learning Switch</onos.app.title> |
| 37 | <onos.app.origin>ON.Lab</onos.app.origin> |
| 38 | <onos.app.category>Tutorial</onos.app.category> |
| 39 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 40 | <onos.app.readme>Learning Switch Tutorial Implementation.</onos.app.readme> |
| 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onosproject</groupId> |
| 46 | <artifactId>onos-api</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onlab-osgi</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>junit</groupId> |
| 58 | <artifactId>junit</artifactId> |
| 59 | <version>4.12</version> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-api</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | <scope>test</scope> |
| 68 | <classifier>tests</classifier> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 74 | <version>1.9.12</version> |
| 75 | <scope>provided</scope> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.slf4j</groupId> |
| 80 | <artifactId>slf4j-api</artifactId> |
| 81 | <version>1.7.21</version> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </project> |