blob: 20f55c3fc9ae6829b654466b436de96e926220bb [file] [log] [blame]
Dusan Pajinee285302015-09-20 18:43:20 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 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" 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-app-samples</artifactId>
23 <version>1.3.0-SNAPSHOT</version>
24 <relativePath>../pom.xml</relativePath>
25 </parent>
26
27 <artifactId>onos-app-ipfix</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>OpenFlow statistics export over IPFIX</description>
31 <url>http://onosproject.org</url>
32
33 <properties>
34 <onos.app.name>org.onosproject.ipfix</onos.app.name>
35 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-api</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onlab-osgi</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>4.11</version>
54 <scope>test</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-junit</artifactId>
60 <version>${project.version}</version>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onos-api</artifactId>
67 <version>${project.version}</version>
68 <scope>test</scope>
69 <classifier>tests</classifier>
70 </dependency>
71
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-of-api</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.osgi</groupId>
80 <artifactId>org.osgi.compendium</artifactId>
81 <version>5.0.0</version>
82 </dependency>
83
84 <dependency>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>org.apache.felix.scr.annotations</artifactId>
87 <version>1.9.8</version>
88 <scope>provided</scope>
89 </dependency>
90 </dependencies>
91
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 <version>2.5.3</version>
98 <extensions>true</extensions>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-compiler-plugin</artifactId>
103 <version>2.5.1</version>
104 <configuration>
105 <source>1.8</source>
106 <target>1.8</target>
107 </configuration>
108 </plugin>
109 <plugin>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>maven-scr-plugin</artifactId>
112 <version>1.20.0</version>
113 <executions>
114 <execution>
115 <id>generate-scr-srcdescriptor</id>
116 <goals>
117 <goal>scr</goal>
118 </goals>
119 </execution>
120 </executions>
121 <configuration>
122 <supportedProjectTypes>
123 <supportedProjectType>bundle</supportedProjectType>
124 <supportedProjectType>war</supportedProjectType>
125 </supportedProjectTypes>
126 </configuration>
127 </plugin>
128 <plugin>
129 <groupId>org.onosproject</groupId>
130 <artifactId>onos-maven-plugin</artifactId>
131 <version>1.5</version>
132 <executions>
133 <execution>
134 <id>cfg</id>
135 <phase>generate-resources</phase>
136 <goals>
137 <goal>cfg</goal>
138 </goals>
139 </execution>
140 <execution>
141 <id>swagger</id>
142 <phase>generate-sources</phase>
143 <goals>
144 <goal>swagger</goal>
145 </goals>
146 </execution>
147 <execution>
148 <id>app</id>
149 <phase>package</phase>
150 <goals>
151 <goal>app</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156 </plugins>
157 </build>
158
159</project>