blob: 64bda6aa381af530bfabfc52a91407f0830f6d36 [file] [log] [blame]
Dusan Pajinee285302015-09-20 18:43:20 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Li7f977082016-03-09 11:18:22 -08003 ~ Copyright 2014-2016 Open Networking Laboratory
Dusan Pajinee285302015-09-20 18:43:20 +02004 ~
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>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080022 <artifactId>onos-dependencies</artifactId>
23 <version>1.8.0</version>
24 <relativePath/><!-- parent is remote -->
Dusan Pajinee285302015-09-20 18:43:20 +020025 </parent>
Jonathan Hart63ddb742016-01-04 11:20:08 -080026
Dusan Pajinee285302015-09-20 18:43:20 +020027 <artifactId>onos-app-ipfix</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080028 <version>1.9.0-SNAPSHOT</version>
Dusan Pajinee285302015-09-20 18:43:20 +020029 <packaging>bundle</packaging>
30
31 <description>OpenFlow statistics export over IPFIX</description>
32 <url>http://onosproject.org</url>
33
34 <properties>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080035 <onos.version>1.8.0</onos.version>
Dusan Pajinee285302015-09-20 18:43:20 +020036 <onos.app.name>org.onosproject.ipfix</onos.app.name>
Jian Li7f977082016-03-09 11:18:22 -080037 <onos.app.origin>ON.Lab</onos.app.origin>
38 <onos.app.title>OpenFlow Stats Export App</onos.app.title>
39 <onos.app.category>Monitoring</onos.app.category>
40 <onos.app.url>http://onosproject.org</onos.app.url>
Dusan Pajinee285302015-09-20 18:43:20 +020041 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080047 <version>${onos.version}</version>
Dusan Pajinee285302015-09-20 18:43:20 +020048 </dependency>
49
50 <dependency>
Dusan Pajinee285302015-09-20 18:43:20 +020051 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +020053 <scope>test</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-junit</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080059 <version>${onos.version}</version>
Dusan Pajinee285302015-09-20 18:43:20 +020060 <scope>test</scope>
61 </dependency>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080062
Dusan Pajinee285302015-09-20 18:43:20 +020063 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080066 <version>${onos.version}</version>
Dusan Pajinee285302015-09-20 18:43:20 +020067 <scope>test</scope>
68 <classifier>tests</classifier>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
Yuta HIGUCHI7805c5e2016-12-15 19:12:59 -080073 <artifactId>onos-protocols-openflow-api</artifactId>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080074 <version>${onos.version}</version>
Dusan Pajinee285302015-09-20 18:43:20 +020075 </dependency>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080076
Dusan Pajinee285302015-09-20 18:43:20 +020077 <dependency>
78 <groupId>org.osgi</groupId>
79 <artifactId>org.osgi.compendium</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +020080 </dependency>
Yuta HIGUCHIc9fae9f2017-01-31 15:21:51 -080081
Dusan Pajinee285302015-09-20 18:43:20 +020082 <dependency>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>org.apache.felix.scr.annotations</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +020085 <scope>provided</scope>
86 </dependency>
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>maven-bundle-plugin</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +020094 <extensions>true</extensions>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-compiler-plugin</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +020099 </plugin>
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-scr-plugin</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +0200103 <executions>
104 <execution>
105 <id>generate-scr-srcdescriptor</id>
106 <goals>
107 <goal>scr</goal>
108 </goals>
109 </execution>
110 </executions>
111 <configuration>
112 <supportedProjectTypes>
113 <supportedProjectType>bundle</supportedProjectType>
114 <supportedProjectType>war</supportedProjectType>
115 </supportedProjectTypes>
116 </configuration>
117 </plugin>
118 <plugin>
119 <groupId>org.onosproject</groupId>
120 <artifactId>onos-maven-plugin</artifactId>
Dusan Pajinee285302015-09-20 18:43:20 +0200121 <executions>
122 <execution>
123 <id>cfg</id>
124 <phase>generate-resources</phase>
125 <goals>
126 <goal>cfg</goal>
127 </goals>
128 </execution>
129 <execution>
130 <id>swagger</id>
131 <phase>generate-sources</phase>
132 <goals>
133 <goal>swagger</goal>
134 </goals>
135 </execution>
136 <execution>
137 <id>app</id>
138 <phase>package</phase>
139 <goals>
140 <goal>app</goal>
141 </goals>
142 </execution>
143 </executions>
144 </plugin>
145 </plugins>
146 </build>
147
148</project>