blob: 1af3e2bb677504d6e3ebdd623ae5e69958b8f105 [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>
alshabib925064b2015-09-23 13:25:28 -070023 <version>1.4.0-SNAPSHOT</version>
Dusan Pajinee285302015-09-20 18:43:20 +020024 <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>
Dusan Pajinee285302015-09-20 18:43:20 +020045 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <version>4.11</version>
48 <scope>test</scope>
49 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-junit</artifactId>
54 <version>${project.version}</version>
55 <scope>test</scope>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-api</artifactId>
61 <version>${project.version}</version>
62 <scope>test</scope>
63 <classifier>tests</classifier>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-of-api</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71
72 <dependency>
73 <groupId>org.osgi</groupId>
74 <artifactId>org.osgi.compendium</artifactId>
75 <version>5.0.0</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.scr.annotations</artifactId>
81 <version>1.9.8</version>
82 <scope>provided</scope>
83 </dependency>
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>maven-bundle-plugin</artifactId>
91 <version>2.5.3</version>
92 <extensions>true</extensions>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-compiler-plugin</artifactId>
97 <version>2.5.1</version>
98 <configuration>
99 <source>1.8</source>
100 <target>1.8</target>
101 </configuration>
102 </plugin>
103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-scr-plugin</artifactId>
106 <version>1.20.0</version>
107 <executions>
108 <execution>
109 <id>generate-scr-srcdescriptor</id>
110 <goals>
111 <goal>scr</goal>
112 </goals>
113 </execution>
114 </executions>
115 <configuration>
116 <supportedProjectTypes>
117 <supportedProjectType>bundle</supportedProjectType>
118 <supportedProjectType>war</supportedProjectType>
119 </supportedProjectTypes>
120 </configuration>
121 </plugin>
122 <plugin>
123 <groupId>org.onosproject</groupId>
124 <artifactId>onos-maven-plugin</artifactId>
125 <version>1.5</version>
126 <executions>
127 <execution>
128 <id>cfg</id>
129 <phase>generate-resources</phase>
130 <goals>
131 <goal>cfg</goal>
132 </goals>
133 </execution>
134 <execution>
135 <id>swagger</id>
136 <phase>generate-sources</phase>
137 <goals>
138 <goal>swagger</goal>
139 </goals>
140 </execution>
141 <execution>
142 <id>app</id>
143 <phase>package</phase>
144 <goals>
145 <goal>app</goal>
146 </goals>
147 </execution>
148 </executions>
149 </plugin>
150 </plugins>
151 </build>
152
153</project>