alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 6 | |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 7 | <prerequisites> |
| 8 | <maven>3.0.0</maven> |
| 9 | </prerequisites> |
| 10 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 11 | <groupId>org.onlab.onos</groupId> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 12 | <artifactId>onos</artifactId> |
| 13 | <packaging>pom</packaging> |
| 14 | <version>1.0.0-SNAPSHOT</version> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 15 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 16 | <description>Open Networking Operating System root project</description> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 17 | |
| 18 | <modules> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 19 | <module>tools/build/conf</module> |
| 20 | <module>utils</module> |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 21 | <module>core</module> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 22 | <module>web</module> |
| 23 | <module>cli</module> |
| 24 | <module>providers</module> |
tom | f8b8d67 | 2014-09-17 13:07:23 -0700 | [diff] [blame] | 25 | <module>openflow</module> |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 26 | <module>apps</module> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 27 | <module>features</module> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 28 | <module>tools/package/branding</module> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 29 | </modules> |
| 30 | |
| 31 | <url>http://onlab.us/</url> |
| 32 | |
| 33 | <licenses> |
| 34 | <license> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 35 | <name>Apache License, Version 2.0</name> |
| 36 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 37 | </license> |
| 38 | </licenses> |
| 39 | |
Yuta HIGUCHI | e2efe72 | 2014-09-19 14:37:34 -0700 | [diff] [blame] | 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 42 | <netty4.version>4.0.23.Final</netty4.version> |
Yuta HIGUCHI | e2efe72 | 2014-09-19 14:37:34 -0700 | [diff] [blame] | 43 | </properties> |
| 44 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 45 | <dependencyManagement> |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
| 50 | <version>4.11</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 53 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 54 | <dependency> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 55 | <groupId>org.hamcrest</groupId> |
| 56 | <artifactId>hamcrest-core</artifactId> |
| 57 | <version>1.3</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.hamcrest</groupId> |
| 62 | <artifactId>hamcrest-library</artifactId> |
| 63 | <version>1.3</version> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 68 | <groupId>org.slf4j</groupId> |
| 69 | <artifactId>slf4j-api</artifactId> |
| 70 | <version>1.7.6</version> |
| 71 | <scope>provided</scope> |
| 72 | </dependency> |
| 73 | |
| 74 | <dependency> |
| 75 | <groupId>org.slf4j</groupId> |
pankaj | b57fae2 | 2014-10-06 18:28:21 -0700 | [diff] [blame] | 76 | <artifactId>slf4j-core</artifactId> |
| 77 | <version>1.7.6</version> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.slf4j</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 83 | <artifactId>slf4j-jdk14</artifactId> |
| 84 | <version>1.7.6</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
| 89 | <groupId>com.google.guava</groupId> |
| 90 | <artifactId>guava</artifactId> |
tom | eadbb46 | 2014-09-07 16:10:19 -0700 | [diff] [blame] | 91 | <version>18.0</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 92 | </dependency> |
| 93 | |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 94 | <dependency> |
Madan Jampani | a185d86 | 2014-09-30 11:32:31 -0700 | [diff] [blame] | 95 | <groupId>io.netty</groupId> |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 96 | <artifactId>netty</artifactId> |
| 97 | <version>3.9.0.Final</version> |
| 98 | </dependency> |
| 99 | |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 100 | <dependency> |
| 101 | <groupId>com.google.guava</groupId> |
| 102 | <artifactId>guava-testlib</artifactId> |
tom | eadbb46 | 2014-09-07 16:10:19 -0700 | [diff] [blame] | 103 | <version>18.0</version> |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 104 | <scope>test</scope> |
| 105 | </dependency> |
| 106 | |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 107 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 108 | <groupId>com.googlecode.concurrent-trees</groupId> |
| 109 | <artifactId>concurrent-trees</artifactId> |
| 110 | <version>2.4.0</version> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 111 | </dependency> |
| 112 | |
| 113 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 114 | <groupId>commons-lang</groupId> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 115 | <artifactId>commons-lang</artifactId> |
| 116 | <version>2.6</version> |
| 117 | </dependency> |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 118 | |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>org.apache.commons</groupId> |
| 121 | <artifactId>commons-lang3</artifactId> |
| 122 | <version>3.3.2</version> |
| 123 | </dependency> |
| 124 | |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 125 | <dependency> |
| 126 | <groupId>org.codehaus.jackson</groupId> |
| 127 | <artifactId>jackson-core-asl</artifactId> |
| 128 | <version>1.9.13</version> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.codehaus.jackson</groupId> |
| 132 | <artifactId>jackson-mapper-asl</artifactId> |
| 133 | <version>1.9.13</version> |
| 134 | </dependency> |
Jonathan Hart | 74f9c3b | 2014-09-29 20:03:50 -0700 | [diff] [blame] | 135 | |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>org.easymock</groupId> |
| 138 | <artifactId>easymock</artifactId> |
| 139 | <version>3.2</version> |
| 140 | <scope>test</scope> |
| 141 | </dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 142 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 143 | <!-- Web related --> |
| 144 | <dependency> |
| 145 | <groupId>com.sun.jersey</groupId> |
| 146 | <artifactId>jersey-servlet</artifactId> |
| 147 | <version>1.18.1</version> |
| 148 | <scope>provided</scope> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>com.fasterxml.jackson.core</groupId> |
| 152 | <artifactId>jackson-databind</artifactId> |
| 153 | <version>2.4.2</version> |
| 154 | <scope>provided</scope> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>com.fasterxml.jackson.core</groupId> |
| 158 | <artifactId>jackson-annotations</artifactId> |
| 159 | <version>2.4.2</version> |
| 160 | <scope>provided</scope> |
| 161 | </dependency> |
| 162 | |
| 163 | <!-- OSGi related --> |
| 164 | <dependency> |
| 165 | <groupId>org.osgi</groupId> |
| 166 | <artifactId>org.osgi.core</artifactId> |
| 167 | <version>4.3.1</version> |
| 168 | <scope>provided</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
tom | c16656f | 2014-10-15 18:30:31 -0700 | [diff] [blame] | 171 | <groupId>org.osgi</groupId> |
| 172 | <artifactId>org.osgi.compendium</artifactId> |
| 173 | <version>4.3.1</version> |
| 174 | <scope>provided</scope> |
| 175 | </dependency> |
| 176 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 177 | <groupId>org.apache.felix</groupId> |
| 178 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 179 | <version>1.9.8</version> |
| 180 | <scope>provided</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.apache.karaf.shell</groupId> |
| 184 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 185 | <version>3.0.1</version> |
| 186 | <scope>provided</scope> |
| 187 | </dependency> |
| 188 | |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 189 | <dependency> |
tom | 14dc4d0 | 2014-09-26 12:43:14 -0700 | [diff] [blame] | 190 | <groupId>org.livetribe.slp</groupId> |
| 191 | <artifactId>livetribe-slp</artifactId> |
| 192 | <version>2.2.1</version> |
| 193 | </dependency> |
| 194 | |
| 195 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 196 | <groupId>com.hazelcast</groupId> |
| 197 | <artifactId>hazelcast</artifactId> |
Yuta HIGUCHI | 9eedb46 | 2014-10-23 12:45:14 -0700 | [diff] [blame] | 198 | <version>3.3.2</version> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 199 | </dependency> |
| 200 | <dependency> |
tom | dc66b38 | 2014-09-22 17:05:47 -0700 | [diff] [blame] | 201 | <groupId>com.eclipsesource.minimal-json</groupId> |
| 202 | <artifactId>minimal-json</artifactId> |
| 203 | <version>0.9.1</version> |
| 204 | </dependency> |
| 205 | <dependency> |
Yuta HIGUCHI | 8ee7d4c | 2014-10-09 23:09:41 -0700 | [diff] [blame] | 206 | <groupId>com.esotericsoftware</groupId> |
| 207 | <artifactId>kryo</artifactId> |
| 208 | <version>3.0.0</version> |
| 209 | </dependency> |
| 210 | <dependency> |
| 211 | <groupId>com.esotericsoftware</groupId> |
| 212 | <artifactId>reflectasm</artifactId> |
| 213 | <version>1.10.0</version> |
| 214 | <type>bundle</type> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>org.ow2.asm</groupId> |
| 218 | <artifactId>asm</artifactId> |
| 219 | <version>4.2</version> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 220 | </dependency> |
| 221 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 222 | <groupId>com.esotericsoftware</groupId> |
| 223 | <artifactId>minlog</artifactId> |
| 224 | <version>1.3.0</version> |
| 225 | </dependency> |
| 226 | <dependency> |
| 227 | <groupId>org.objenesis</groupId> |
| 228 | <artifactId>objenesis</artifactId> |
| 229 | <version>2.1</version> |
| 230 | </dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 231 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 232 | <!-- ONOS related --> |
| 233 | <dependency> |
| 234 | <groupId>org.onlab.onos</groupId> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 235 | <artifactId>onlab-misc</artifactId> |
| 236 | <version>${project.version}</version> |
| 237 | </dependency> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 238 | <dependency> |
| 239 | <groupId>org.onlab.onos</groupId> |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 240 | <artifactId>onlab-nio</artifactId> |
| 241 | <version>${project.version}</version> |
| 242 | </dependency> |
| 243 | <dependency> |
| 244 | <groupId>org.onlab.onos</groupId> |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 245 | <artifactId>onlab-osgi</artifactId> |
| 246 | <version>${project.version}</version> |
| 247 | </dependency> |
| 248 | <dependency> |
| 249 | <groupId>org.onlab.onos</groupId> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 250 | <artifactId>onlab-junit</artifactId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 251 | <version>${project.version}</version> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 252 | <scope>test</scope> |
| 253 | </dependency> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 254 | |
| 255 | <dependency> |
| 256 | <groupId>org.onlab.onos</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 257 | <artifactId>onos-api</artifactId> |
| 258 | <version>${project.version}</version> |
| 259 | </dependency> |
| 260 | <dependency> |
| 261 | <groupId>org.onlab.onos</groupId> |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 262 | <artifactId>onos-api</artifactId> |
| 263 | <version>${project.version}</version> |
| 264 | <classifier>tests</classifier> |
| 265 | <scope>test</scope> |
| 266 | </dependency> |
| 267 | |
| 268 | <dependency> |
| 269 | <groupId>org.onlab.onos</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 270 | <artifactId>onos-of-api</artifactId> |
| 271 | <version>${project.version}</version> |
| 272 | </dependency> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 273 | |
| 274 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 275 | <groupId>org.onlab.onos</groupId> |
| 276 | <artifactId>onlab-thirdparty</artifactId> |
| 277 | <version>${project.version}</version> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 278 | </dependency> |
| 279 | |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 280 | <dependency> |
| 281 | <groupId>org.onlab.onos</groupId> |
| 282 | <artifactId>onos-of-api</artifactId> |
| 283 | <version>${project.version}</version> |
| 284 | <classifier>tests</classifier> |
| 285 | <scope>test</scope> |
| 286 | </dependency> |
Yuta HIGUCHI | 707a7e6 | 2014-10-02 16:35:49 -0700 | [diff] [blame] | 287 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 288 | <groupId>commons-pool</groupId> |
| 289 | <artifactId>commons-pool</artifactId> |
| 290 | <version>1.6</version> |
Yuta HIGUCHI | 707a7e6 | 2014-10-02 16:35:49 -0700 | [diff] [blame] | 291 | </dependency> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 292 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 293 | <groupId>io.netty</groupId> |
| 294 | <artifactId>netty-common</artifactId> |
| 295 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 296 | </dependency> |
| 297 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 298 | <groupId>io.netty</groupId> |
| 299 | <artifactId>netty-buffer</artifactId> |
| 300 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 301 | </dependency> |
| 302 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 303 | <groupId>io.netty</groupId> |
| 304 | <artifactId>netty-transport</artifactId> |
| 305 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 306 | </dependency> |
| 307 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 308 | <groupId>io.netty</groupId> |
| 309 | <artifactId>netty-handler</artifactId> |
| 310 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 311 | </dependency> |
| 312 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 313 | <groupId>io.netty</groupId> |
| 314 | <artifactId>netty-codec</artifactId> |
| 315 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 316 | </dependency> |
Madan Jampani | 824a7c1 | 2014-10-21 09:46:15 -0700 | [diff] [blame] | 317 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 318 | <groupId>io.netty</groupId> |
| 319 | <artifactId>netty-transport-native-epoll</artifactId> |
| 320 | <version>${netty4.version}</version> |
Madan Jampani | 824a7c1 | 2014-10-21 09:46:15 -0700 | [diff] [blame] | 321 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 322 | </dependencies> |
| 323 | </dependencyManagement> |
| 324 | |
| 325 | <dependencies> |
| 326 | <dependency> |
| 327 | <groupId>junit</groupId> |
| 328 | <artifactId>junit</artifactId> |
| 329 | </dependency> |
| 330 | <dependency> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 331 | <groupId>org.hamcrest</groupId> |
| 332 | <artifactId>hamcrest-core</artifactId> |
| 333 | </dependency> |
| 334 | <dependency> |
| 335 | <groupId>org.hamcrest</groupId> |
| 336 | <artifactId>hamcrest-library</artifactId> |
| 337 | </dependency> |
| 338 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 339 | <groupId>org.slf4j</groupId> |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 340 | <artifactId>slf4j-api</artifactId> |
| 341 | </dependency> |
| 342 | <dependency> |
| 343 | <groupId>org.slf4j</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 344 | <artifactId>slf4j-jdk14</artifactId> |
| 345 | </dependency> |
| 346 | </dependencies> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 347 | |
| 348 | <build> |
| 349 | <pluginManagement> |
| 350 | <plugins> |
| 351 | <plugin> |
| 352 | <groupId>org.apache.maven.plugins</groupId> |
| 353 | <artifactId>maven-compiler-plugin</artifactId> |
Yuta HIGUCHI | ea90aa6 | 2014-10-13 15:57:55 -0700 | [diff] [blame] | 354 | <!-- TODO: update once following issue is fixed. --> |
| 355 | <!-- https://jira.codehaus.org/browse/MCOMPILER-205 --> |
| 356 | <version>2.5.1</version> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 357 | <configuration> |
| 358 | <source>1.7</source> |
| 359 | <target>1.7</target> |
| 360 | </configuration> |
| 361 | </plugin> |
| 362 | |
| 363 | <plugin> |
| 364 | <groupId>org.apache.maven.plugins</groupId> |
| 365 | <artifactId>maven-surefire-plugin</artifactId> |
| 366 | <version>2.17</version> |
tom | 6488812 | 2014-08-27 21:47:46 -0700 | [diff] [blame] | 367 | <configuration> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 368 | <redirectTestOutputToFile>true |
| 369 | </redirectTestOutputToFile> |
tom | 6488812 | 2014-08-27 21:47:46 -0700 | [diff] [blame] | 370 | <printSummary>true</printSummary> |
| 371 | </configuration> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 372 | </plugin> |
| 373 | |
| 374 | <plugin> |
| 375 | <groupId>org.apache.maven.plugins</groupId> |
| 376 | <artifactId>maven-jar-plugin</artifactId> |
| 377 | <version>2.3.1</version> |
| 378 | <executions> |
| 379 | <execution> |
| 380 | <phase>package</phase> |
| 381 | <goals> |
| 382 | <goal>test-jar</goal> |
| 383 | </goals> |
| 384 | </execution> |
| 385 | </executions> |
| 386 | </plugin> |
| 387 | |
| 388 | <plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 389 | <groupId>org.apache.maven.plugins</groupId> |
| 390 | <artifactId>maven-resources-plugin</artifactId> |
| 391 | <version>2.6</version> |
| 392 | </plugin> |
| 393 | |
| 394 | <plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 395 | <groupId>org.apache.felix</groupId> |
| 396 | <artifactId>maven-bundle-plugin</artifactId> |
| 397 | <version>2.3.7</version> |
| 398 | <extensions>true</extensions> |
| 399 | </plugin> |
| 400 | |
| 401 | <plugin> |
| 402 | <groupId>org.apache.felix</groupId> |
| 403 | <artifactId>maven-scr-plugin</artifactId> |
| 404 | <version>1.15.0</version> |
| 405 | <executions> |
| 406 | <execution> |
| 407 | <id>generate-scr-srcdescriptor</id> |
| 408 | <goals> |
| 409 | <goal>scr</goal> |
| 410 | </goals> |
| 411 | </execution> |
| 412 | </executions> |
| 413 | <configuration> |
| 414 | <supportedProjectTypes> |
| 415 | <supportedProjectType>bundle</supportedProjectType> |
| 416 | <supportedProjectType>war</supportedProjectType> |
| 417 | </supportedProjectTypes> |
| 418 | </configuration> |
| 419 | </plugin> |
| 420 | |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 421 | <!-- TODO: add findbugs plugin for static code analysis; for explicit invocation only --> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 422 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 423 | <plugin> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 424 | <groupId>org.eclipse.m2e</groupId> |
| 425 | <artifactId>lifecycle-mapping</artifactId> |
| 426 | <version>1.0.0</version> |
| 427 | <configuration> |
| 428 | <lifecycleMappingMetadata> |
| 429 | <pluginExecutions> |
| 430 | <pluginExecution> |
| 431 | <pluginExecutionFilter> |
| 432 | <groupId>org.jacoco</groupId> |
| 433 | <artifactId> |
| 434 | jacoco-maven-plugin |
| 435 | </artifactId> |
| 436 | <versionRange> |
| 437 | [0.7.1.201405082137,) |
| 438 | </versionRange> |
| 439 | <goals> |
| 440 | <goal>prepare-agent</goal> |
| 441 | </goals> |
| 442 | </pluginExecutionFilter> |
| 443 | <action> |
| 444 | <ignore></ignore> |
| 445 | </action> |
| 446 | </pluginExecution> |
| 447 | </pluginExecutions> |
| 448 | </lifecycleMappingMetadata> |
| 449 | </configuration> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 450 | </plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 451 | </plugins> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 452 | </pluginManagement> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 453 | |
| 454 | <plugins> |
| 455 | <plugin> |
| 456 | <groupId>org.apache.maven.plugins</groupId> |
tom | e33cc1a | 2014-08-25 21:59:41 -0700 | [diff] [blame] | 457 | <artifactId>maven-jar-plugin</artifactId> |
| 458 | </plugin> |
| 459 | |
| 460 | <plugin> |
| 461 | <groupId>org.apache.maven.plugins</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 462 | <artifactId>maven-checkstyle-plugin</artifactId> |
Yuta HIGUCHI | ee0ae6c | 2014-10-18 18:11:57 -0700 | [diff] [blame] | 463 | <version>2.13</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 464 | <dependencies> |
| 465 | <dependency> |
| 466 | <groupId>org.onlab.tools</groupId> |
| 467 | <artifactId>onos-build-conf</artifactId> |
| 468 | <version>1.0</version> |
| 469 | </dependency> |
| 470 | </dependencies> |
| 471 | <configuration> |
| 472 | <configLocation>onos/checkstyle.xml</configLocation> |
| 473 | <suppressionsLocation>onos/suppressions.xml |
| 474 | </suppressionsLocation> |
| 475 | <failsOnError>false</failsOnError> |
| 476 | <logViolationsToConsole>true</logViolationsToConsole> |
| 477 | <includeTestSourceDirectory>true |
| 478 | </includeTestSourceDirectory> |
| 479 | </configuration> |
| 480 | <executions> |
| 481 | <execution> |
| 482 | <id>validate-checkstyle</id> |
| 483 | <phase>verify</phase> |
| 484 | <goals> |
| 485 | <goal>check</goal> |
| 486 | </goals> |
| 487 | </execution> |
| 488 | </executions> |
| 489 | </plugin> |
| 490 | |
| 491 | <plugin> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 492 | <groupId>org.apache.maven.plugins</groupId> |
| 493 | <artifactId>maven-pmd-plugin</artifactId> |
| 494 | <version>3.2</version> |
| 495 | <configuration> |
| 496 | <excludes> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 497 | </excludes> |
| 498 | <rulesets> |
| 499 | <ruleset>onos/pmd.xml</ruleset> |
| 500 | </rulesets> |
| 501 | </configuration> |
| 502 | <executions> |
| 503 | <execution> |
| 504 | <id>validate-pmd</id> |
| 505 | <phase>verify</phase> |
| 506 | <goals> |
| 507 | <!-- Uncomment this goal to make the build fail on pmd errors --> |
| 508 | <!--<goal>check</goal>--> |
| 509 | </goals> |
| 510 | </execution> |
| 511 | </executions> |
| 512 | </plugin> |
| 513 | |
| 514 | <plugin> |
tom | 4f3b18b | 2014-08-28 14:38:47 -0700 | [diff] [blame] | 515 | <groupId>org.jacoco</groupId> |
| 516 | <artifactId>jacoco-maven-plugin</artifactId> |
| 517 | <version>0.7.1.201405082137</version> |
| 518 | <executions> |
| 519 | <execution> |
| 520 | <id>default-prepare-agent</id> |
| 521 | <goals> |
| 522 | <goal>prepare-agent</goal> |
| 523 | </goals> |
| 524 | </execution> |
| 525 | <execution> |
| 526 | <id>default-report</id> |
| 527 | <phase>prepare-package</phase> |
| 528 | <goals> |
| 529 | <goal>report</goal> |
| 530 | </goals> |
| 531 | </execution> |
| 532 | </executions> |
| 533 | </plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 534 | </plugins> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 535 | </build> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 536 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 537 | <reporting> |
| 538 | <plugins> |
| 539 | <plugin> |
| 540 | <groupId>org.apache.maven.plugins</groupId> |
| 541 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 542 | <version>2.12.1</version> |
| 543 | <configuration> |
| 544 | <configLocation>onos/checkstyle.xml</configLocation> |
| 545 | </configuration> |
| 546 | </plugin> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 547 | |
| 548 | <plugin> |
| 549 | <groupId>org.apache.maven.plugins</groupId> |
| 550 | <artifactId>maven-pmd-plugin</artifactId> |
| 551 | <version>3.2</version> |
| 552 | <configuration> |
| 553 | <excludes> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 554 | </excludes> |
| 555 | <rulesets> |
| 556 | <ruleset>onos/pmd.xml</ruleset> |
| 557 | </rulesets> |
| 558 | </configuration> |
| 559 | </plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 560 | </plugins> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 561 | </reporting> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 562 | </project> |