blob: 8415e92b64dedf9e8e5092e53a22734ebcb0c23e [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>
20 <parent>
21 <artifactId>onos-apps</artifactId>
22 <groupId>org.onosproject</groupId>
23 <version>1.5.0-SNAPSHOT</version>
24 <relativePath>../pom.xml</relativePath>
25 </parent>
26
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-events</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>App to display ONOS event history</description>
32 <url>http://onosproject.org</url>
33
34 <properties>
35 <onos.version>1.5.0-SNAPSHOT</onos.version>
36 <onos.app.name>org.onosproject.events</onos.app.name>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onlab-osgi</artifactId>
48 </dependency>
49
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <scope>test</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-api</artifactId>
59 <scope>test</scope>
60 <classifier>tests</classifier>
61 </dependency>
62
63 <dependency>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>org.apache.felix.scr.annotations</artifactId>
66 <scope>provided</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onos-cli</artifactId>
72 <version>${project.version}</version>
73 </dependency>
74
75 <dependency>
76 <groupId>org.osgi</groupId>
77 <artifactId>org.osgi.core</artifactId>
78 <scope>provided</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.apache.karaf.shell</groupId>
83 <artifactId>org.apache.karaf.shell.console</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onlab-junit</artifactId>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.onosproject</groupId>
93 <artifactId>onlab-misc</artifactId>
94 </dependency>
95 </dependencies>
96
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-bundle-plugin</artifactId>
102 <extensions>true</extensions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-compiler-plugin</artifactId>
107 </plugin>
108 <plugin>
109 <groupId>org.apache.felix</groupId>
110 <artifactId>maven-scr-plugin</artifactId>
111 <executions>
112 <execution>
113 <id>generate-scr-srcdescriptor</id>
114 <goals>
115 <goal>scr</goal>
116 </goals>
117 </execution>
118 </executions>
119 <configuration>
120 <supportedProjectTypes>
121 <supportedProjectType>bundle</supportedProjectType>
122 <supportedProjectType>war</supportedProjectType>
123 </supportedProjectTypes>
124 </configuration>
125 </plugin>
126 <plugin>
127 <groupId>org.onosproject</groupId>
128 <artifactId>onos-maven-plugin</artifactId>
129 <executions>
130 <execution>
131 <id>cfg</id>
132 <phase>generate-resources</phase>
133 <goals>
134 <goal>cfg</goal>
135 </goals>
136 </execution>
137 <execution>
138 <id>swagger</id>
139 <phase>generate-sources</phase>
140 <goals>
141 <goal>swagger</goal>
142 </goals>
143 </execution>
144 <execution>
145 <id>app</id>
146 <phase>package</phase>
147 <goals>
148 <goal>app</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153 </plugins>
154 </build>
155
156</project>