HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [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" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
Thomas Vachuska | a907612 | 2016-03-02 01:07:43 -0800 | [diff] [blame] | 20 | |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 21 | <parent> |
| 22 | <artifactId>onos-apps</artifactId> |
| 23 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | 03e5521 | 2018-08-14 22:13:58 +0000 | [diff] [blame] | 24 | <version>1.14.0-SNAPSHOT</version> |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 25 | </parent> |
| 26 | |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 27 | <artifactId>onos-events</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>App to display ONOS event history</description> |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 31 | |
| 32 | <properties> |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 33 | <onos.app.name>org.onosproject.events</onos.app.name> |
Jian Li | fd46e1d | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 34 | <onos.app.title>Event History App</onos.app.title> |
| 35 | <onos.app.category>Utility</onos.app.category> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 36 | <onos.app.url>http://onosproject.org</onos.app.url> |
Thomas Vachuska | a907612 | 2016-03-02 01:07:43 -0800 | [diff] [blame] | 37 | <onos.app.readme>ONOS event history display application.</onos.app.readme> |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 38 | </properties> |
| 39 | |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.onosproject</groupId> |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 43 | <artifactId>onlab-osgi</artifactId> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>junit</groupId> |
| 48 | <artifactId>junit</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onos-api</artifactId> |
| 55 | <scope>test</scope> |
| 56 | <classifier>tests</classifier> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.apache.felix</groupId> |
| 61 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 62 | <scope>provided</scope> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>onos-cli</artifactId> |
| 68 | <version>${project.version}</version> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>org.osgi</groupId> |
| 73 | <artifactId>org.osgi.core</artifactId> |
| 74 | <scope>provided</scope> |
| 75 | </dependency> |
| 76 | |
| 77 | <dependency> |
| 78 | <groupId>org.apache.karaf.shell</groupId> |
| 79 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 80 | <scope>provided</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
| 84 | <artifactId>onlab-junit</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onosproject</groupId> |
| 89 | <artifactId>onlab-misc</artifactId> |
| 90 | </dependency> |
| 91 | </dependencies> |
| 92 | |
HIGUCHI Yuta | 9092db8 | 2016-01-03 18:45:01 -0800 | [diff] [blame] | 93 | </project> |