Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 3 | ~ Copyright 2014-2016 Open Networking Laboratory |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 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> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 22 | <artifactId>onos-dependencies</artifactId> |
| 23 | <version>1.8.0</version> |
| 24 | <relativePath/><!-- parent is remote --> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 25 | </parent> |
Jonathan Hart | 63ddb74 | 2016-01-04 11:20:08 -0800 | [diff] [blame] | 26 | |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 27 | <artifactId>onos-app-ipfix</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 28 | <version>1.9.0-SNAPSHOT</version> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>OpenFlow statistics export over IPFIX</description> |
| 32 | <url>http://onosproject.org</url> |
| 33 | |
| 34 | <properties> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 35 | <onos.version>1.8.0</onos.version> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 36 | <onos.app.name>org.onosproject.ipfix</onos.app.name> |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 37 | <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 Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onosproject</groupId> |
| 46 | <artifactId>onos-api</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 47 | <version>${onos.version}</version> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 51 | <groupId>junit</groupId> |
| 52 | <artifactId>junit</artifactId> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
| 58 | <artifactId>onlab-junit</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 59 | <version>${onos.version}</version> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 60 | <scope>test</scope> |
| 61 | </dependency> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 62 | |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-api</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 66 | <version>${onos.version}</version> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 67 | <scope>test</scope> |
| 68 | <classifier>tests</classifier> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 7805c5e | 2016-12-15 19:12:59 -0800 | [diff] [blame] | 73 | <artifactId>onos-protocols-openflow-api</artifactId> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 74 | <version>${onos.version}</version> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 75 | </dependency> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 76 | |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 77 | <dependency> |
| 78 | <groupId>org.osgi</groupId> |
| 79 | <artifactId>org.osgi.compendium</artifactId> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 80 | </dependency> |
Yuta HIGUCHI | c9fae9f | 2017-01-31 15:21:51 -0800 | [diff] [blame] | 81 | |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.apache.felix</groupId> |
| 84 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 85 | <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 Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 94 | <extensions>true</extensions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
| 98 | <artifactId>maven-compiler-plugin</artifactId> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 99 | </plugin> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
| 102 | <artifactId>maven-scr-plugin</artifactId> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 103 | <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 Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 121 | <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> |