blob: 9cca7967892d2a00bcfae834f410daa414f982b0 [file] [log] [blame]
HIGUCHI Yuta9092db82016-01-03 18:45:01 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016 Open Networking Laboratory
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 Vachuskaa9076122016-03-02 01:07:43 -080020
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080021 <parent>
22 <artifactId>onos-apps</artifactId>
23 <groupId>org.onosproject</groupId>
Brian O'Connor955c3162016-03-10 15:27:19 -080024 <version>1.6.0-SNAPSHOT</version>
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080025 <relativePath>../pom.xml</relativePath>
26 </parent>
27
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080028 <artifactId>onos-events</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>App to display ONOS event history</description>
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080032
33 <properties>
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080034 <onos.app.name>org.onosproject.events</onos.app.name>
Jian Lifd46e1d2016-03-08 09:18:53 -080035 <onos.app.title>Event History App</onos.app.title>
36 <onos.app.category>Utility</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080037 <onos.app.url>http://onosproject.org</onos.app.url>
Thomas Vachuskaa9076122016-03-02 01:07:43 -080038 <onos.app.readme>ONOS event history display application.</onos.app.readme>
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080039 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080044 <artifactId>onlab-osgi</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <scope>test</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-api</artifactId>
56 <scope>test</scope>
57 <classifier>tests</classifier>
58 </dependency>
59
60 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.scr.annotations</artifactId>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-cli</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71
72 <dependency>
73 <groupId>org.osgi</groupId>
74 <artifactId>org.osgi.core</artifactId>
75 <scope>provided</scope>
76 </dependency>
77
78 <dependency>
79 <groupId>org.apache.karaf.shell</groupId>
80 <artifactId>org.apache.karaf.shell.console</artifactId>
81 <scope>provided</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onlab-junit</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onlab-misc</artifactId>
91 </dependency>
92 </dependencies>
93
HIGUCHI Yuta9092db82016-01-03 18:45:01 -080094</project>