Brian O'Connor | 5af8a94 | 2014-11-26 12:17:40 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 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 | --> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 21 | |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 22 | <prerequisites> |
Yuta HIGUCHI | 1cb9a52 | 2015-02-04 11:55:19 -0800 | [diff] [blame] | 23 | <maven>3.0.1</maven> |
Thomas Vachuska | abfe8d3 | 2014-10-23 15:59:32 -0700 | [diff] [blame] | 24 | </prerequisites> |
| 25 | |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onosproject</groupId> |
| 28 | <artifactId>onos-base</artifactId> |
| 29 | <version>1</version> |
| 30 | <relativePath>tools/build/pom.xml</relativePath> |
| 31 | </parent> |
| 32 | |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 33 | <artifactId>onos</artifactId> |
| 34 | <packaging>pom</packaging> |
Brian O'Connor | afc2d7d | 2015-06-05 23:31:25 -0700 | [diff] [blame] | 35 | <version>1.3.0-SNAPSHOT</version> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 36 | |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 37 | <name>${project.artifactId}</name> |
Yuta HIGUCHI | 964c173 | 2014-12-02 20:38:07 -0800 | [diff] [blame] | 38 | <description>Open Network Operating System root project</description> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 39 | |
| 40 | <modules> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 41 | <module>utils</module> |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 42 | <module>core</module> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 43 | <module>web</module> |
| 44 | <module>cli</module> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 45 | |
| 46 | <module>openflow</module> |
| 47 | <module>ovsdb</module> |
| 48 | <module>pcep</module> |
| 49 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 50 | <module>providers</module> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 51 | <module>drivers</module> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 52 | |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 53 | <module>apps</module> |
Thomas Vachuska | d24aa7f | 2015-05-14 18:37:54 -0700 | [diff] [blame] | 54 | <module>incubator</module> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 55 | <module>features</module> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 56 | |
| 57 | <module>tools/package/archetypes</module> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 58 | <module>tools/package/branding</module> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 59 | |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 60 | <!-- FIXME remove before release --> |
| 61 | <module>tools/package/maven-plugin</module> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 62 | </modules> |
| 63 | |
Brian O'Connor | 3439c10 | 2014-12-03 01:02:03 -0800 | [diff] [blame] | 64 | <url>http://onosproject.org/</url> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 65 | |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 66 | <scm> |
| 67 | <connection>scm:git:https://gerrit.onosproject.org/onos</connection> |
Thomas Vachuska | a8f4e7d | 2015-01-08 17:31:55 -0800 | [diff] [blame] | 68 | <developerConnection>scm:git:https://gerrit.onosproject.org/onos |
| 69 | </developerConnection> |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 70 | <url>http://gerrit.onosproject.org/</url> |
| 71 | </scm> |
| 72 | |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 73 | <licenses> |
| 74 | <license> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 75 | <name>Apache License, Version 2.0</name> |
| 76 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 77 | </license> |
| 78 | </licenses> |
| 79 | |
Yuta HIGUCHI | e2efe72 | 2014-09-19 14:37:34 -0700 | [diff] [blame] | 80 | <properties> |
| 81 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 82 | <netty4.version>4.0.23.Final</netty4.version> |
Madan Jampani | 40537ca | 2015-07-14 19:50:33 -0700 | [diff] [blame] | 83 | <copycat.version>0.5.0.onos12-SNAPSHOT</copycat.version> |
Marc De Leenheer | b931137 | 2015-07-09 11:36:49 -0700 | [diff] [blame] | 84 | <openflowj.version>0.4.1.onos-SNAPSHOT</openflowj.version> |
Thomas Vachuska | 5630c61 | 2015-03-24 12:24:12 -0700 | [diff] [blame] | 85 | <karaf.version>3.0.3</karaf.version> |
| 86 | <jersey.version>1.19</jersey.version> |
Yuta HIGUCHI | e2efe72 | 2014-09-19 14:37:34 -0700 | [diff] [blame] | 87 | </properties> |
| 88 | |
Brian O'Connor | 932d941 | 2014-12-03 17:20:11 -0800 | [diff] [blame] | 89 | <distributionManagement> |
| 90 | <snapshotRepository> |
| 91 | <id>ossrh</id> |
| 92 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 93 | </snapshotRepository> |
| 94 | </distributionManagement> |
Yuta HIGUCHI | 275fb6b | 2014-11-04 08:33:13 -0800 | [diff] [blame] | 95 | |
Madan Jampani | 458fb89 | 2015-07-06 17:54:03 -0700 | [diff] [blame] | 96 | <!--- Needed for copycat. Remove before official release --> |
| 97 | <repositories> |
| 98 | <repository> |
| 99 | <id>snapshots</id> |
| 100 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 101 | </repository> |
| 102 | </repositories> |
| 103 | |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 104 | <!--- FIXME Needed for onos-maven-plugin. Remove before official release --> |
| 105 | <pluginRepositories> |
| 106 | <pluginRepository> |
| 107 | <id>snapshots</id> |
| 108 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 109 | </pluginRepository> |
| 110 | </pluginRepositories> |
| 111 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 112 | <dependencyManagement> |
| 113 | <dependencies> |
| 114 | <dependency> |
| 115 | <groupId>junit</groupId> |
| 116 | <artifactId>junit</artifactId> |
| 117 | <version>4.11</version> |
| 118 | <scope>test</scope> |
| 119 | </dependency> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 120 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 121 | <dependency> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 122 | <groupId>org.hamcrest</groupId> |
| 123 | <artifactId>hamcrest-core</artifactId> |
| 124 | <version>1.3</version> |
| 125 | <scope>test</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.hamcrest</groupId> |
| 129 | <artifactId>hamcrest-library</artifactId> |
| 130 | <version>1.3</version> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | |
| 134 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 135 | <groupId>org.slf4j</groupId> |
| 136 | <artifactId>slf4j-api</artifactId> |
| 137 | <version>1.7.6</version> |
| 138 | <scope>provided</scope> |
| 139 | </dependency> |
| 140 | |
| 141 | <dependency> |
| 142 | <groupId>org.slf4j</groupId> |
pankaj | b57fae2 | 2014-10-06 18:28:21 -0700 | [diff] [blame] | 143 | <artifactId>slf4j-core</artifactId> |
| 144 | <version>1.7.6</version> |
| 145 | <scope>test</scope> |
| 146 | </dependency> |
| 147 | |
| 148 | <dependency> |
| 149 | <groupId>org.slf4j</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 150 | <artifactId>slf4j-jdk14</artifactId> |
| 151 | <version>1.7.6</version> |
| 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | |
| 155 | <dependency> |
| 156 | <groupId>com.google.guava</groupId> |
| 157 | <artifactId>guava</artifactId> |
tom | eadbb46 | 2014-09-07 16:10:19 -0700 | [diff] [blame] | 158 | <version>18.0</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 159 | </dependency> |
| 160 | |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 161 | <dependency> |
Madan Jampani | a185d86 | 2014-09-30 11:32:31 -0700 | [diff] [blame] | 162 | <groupId>io.netty</groupId> |
alshabib | df652ad | 2014-09-09 11:53:19 -0700 | [diff] [blame] | 163 | <artifactId>netty</artifactId> |
| 164 | <version>3.9.0.Final</version> |
| 165 | </dependency> |
| 166 | |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 167 | <dependency> |
| 168 | <groupId>com.google.guava</groupId> |
| 169 | <artifactId>guava-testlib</artifactId> |
tom | eadbb46 | 2014-09-07 16:10:19 -0700 | [diff] [blame] | 170 | <version>18.0</version> |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 171 | <scope>test</scope> |
| 172 | </dependency> |
| 173 | |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 174 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 175 | <groupId>com.googlecode.concurrent-trees</groupId> |
| 176 | <artifactId>concurrent-trees</artifactId> |
| 177 | <version>2.4.0</version> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 178 | </dependency> |
| 179 | |
| 180 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 181 | <groupId>commons-lang</groupId> |
tom | 6d2a43e | 2014-09-08 01:50:20 -0700 | [diff] [blame] | 182 | <artifactId>commons-lang</artifactId> |
| 183 | <version>2.6</version> |
| 184 | </dependency> |
tom | de8d968 | 2014-08-27 01:11:43 -0700 | [diff] [blame] | 185 | |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 186 | <dependency> |
| 187 | <groupId>org.apache.commons</groupId> |
| 188 | <artifactId>commons-lang3</artifactId> |
| 189 | <version>3.3.2</version> |
| 190 | </dependency> |
| 191 | |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 192 | <dependency> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 193 | <groupId>commons-configuration</groupId> |
| 194 | <artifactId>commons-configuration</artifactId> |
| 195 | <version>1.10</version> |
| 196 | </dependency> |
| 197 | |
| 198 | <dependency> |
Thomas Vachuska | f9c8436 | 2015-04-15 11:20:45 -0700 | [diff] [blame] | 199 | <groupId>commons-collections</groupId> |
| 200 | <artifactId>commons-collections</artifactId> |
| 201 | <version>3.2.1</version> |
| 202 | </dependency> |
| 203 | |
| 204 | <dependency> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 205 | <groupId>org.codehaus.jackson</groupId> |
| 206 | <artifactId>jackson-core-asl</artifactId> |
| 207 | <version>1.9.13</version> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.codehaus.jackson</groupId> |
| 211 | <artifactId>jackson-mapper-asl</artifactId> |
| 212 | <version>1.9.13</version> |
| 213 | </dependency> |
Jonathan Hart | 74f9c3b | 2014-09-29 20:03:50 -0700 | [diff] [blame] | 214 | |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 215 | <dependency> |
| 216 | <groupId>org.easymock</groupId> |
| 217 | <artifactId>easymock</artifactId> |
| 218 | <version>3.2</version> |
| 219 | <scope>test</scope> |
| 220 | </dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 221 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 222 | <!-- Web related --> |
| 223 | <dependency> |
| 224 | <groupId>com.sun.jersey</groupId> |
| 225 | <artifactId>jersey-servlet</artifactId> |
Thomas Vachuska | 5630c61 | 2015-03-24 12:24:12 -0700 | [diff] [blame] | 226 | <version>${jersey.version}</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 227 | <scope>provided</scope> |
| 228 | </dependency> |
| 229 | <dependency> |
Thomas Vachuska | 530e52a | 2015-05-06 19:51:32 -0700 | [diff] [blame] | 230 | <groupId>com.sun.jersey.contribs</groupId> |
| 231 | <artifactId>jersey-multipart</artifactId> |
| 232 | <version>${jersey.version}</version> |
| 233 | <scope>provided</scope> |
| 234 | </dependency> |
| 235 | <dependency> |
Ray Milkey | 67c2272 | 2015-03-09 15:48:57 -0700 | [diff] [blame] | 236 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 237 | <artifactId>jersey-test-framework-core</artifactId> |
Thomas Vachuska | 5630c61 | 2015-03-24 12:24:12 -0700 | [diff] [blame] | 238 | <version>${jersey.version}</version> |
Ray Milkey | 67c2272 | 2015-03-09 15:48:57 -0700 | [diff] [blame] | 239 | <scope>test</scope> |
| 240 | </dependency> |
| 241 | <dependency> |
| 242 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 243 | <artifactId>jersey-test-framework-grizzly2</artifactId> |
Thomas Vachuska | 5630c61 | 2015-03-24 12:24:12 -0700 | [diff] [blame] | 244 | <version>${jersey.version}</version> |
Ray Milkey | 67c2272 | 2015-03-09 15:48:57 -0700 | [diff] [blame] | 245 | <scope>test</scope> |
| 246 | </dependency> |
| 247 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 248 | <groupId>com.fasterxml.jackson.core</groupId> |
| 249 | <artifactId>jackson-databind</artifactId> |
| 250 | <version>2.4.2</version> |
| 251 | <scope>provided</scope> |
| 252 | </dependency> |
| 253 | <dependency> |
| 254 | <groupId>com.fasterxml.jackson.core</groupId> |
| 255 | <artifactId>jackson-annotations</artifactId> |
| 256 | <version>2.4.2</version> |
| 257 | <scope>provided</scope> |
| 258 | </dependency> |
| 259 | |
| 260 | <!-- OSGi related --> |
| 261 | <dependency> |
| 262 | <groupId>org.osgi</groupId> |
| 263 | <artifactId>org.osgi.core</artifactId> |
| 264 | <version>4.3.1</version> |
| 265 | <scope>provided</scope> |
| 266 | </dependency> |
| 267 | <dependency> |
tom | c16656f | 2014-10-15 18:30:31 -0700 | [diff] [blame] | 268 | <groupId>org.osgi</groupId> |
| 269 | <artifactId>org.osgi.compendium</artifactId> |
| 270 | <version>4.3.1</version> |
| 271 | <scope>provided</scope> |
| 272 | </dependency> |
| 273 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 274 | <groupId>org.apache.felix</groupId> |
| 275 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 276 | <version>1.9.8</version> |
| 277 | <scope>provided</scope> |
| 278 | </dependency> |
Thomas Vachuska | 5630c61 | 2015-03-24 12:24:12 -0700 | [diff] [blame] | 279 | |
| 280 | <dependency> |
| 281 | <groupId>org.apache.karaf.features</groupId> |
| 282 | <artifactId>org.apache.karaf.features.core</artifactId> |
| 283 | <version>${karaf.version}</version> |
| 284 | <scope>provided</scope> |
| 285 | </dependency> |
Thomas Vachuska | de563cf | 2015-04-01 00:28:50 -0700 | [diff] [blame] | 286 | <dependency> |
| 287 | <groupId>org.apache.karaf.system</groupId> |
| 288 | <artifactId>org.apache.karaf.system.core</artifactId> |
| 289 | <version>${karaf.version}</version> |
| 290 | <scope>provided</scope> |
| 291 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 292 | <dependency> |
| 293 | <groupId>org.apache.karaf.shell</groupId> |
| 294 | <artifactId>org.apache.karaf.shell.console</artifactId> |
Thomas Vachuska | 5630c61 | 2015-03-24 12:24:12 -0700 | [diff] [blame] | 295 | <version>${karaf.version}</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 296 | <scope>provided</scope> |
| 297 | </dependency> |
| 298 | |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 299 | <dependency> |
tom | 14dc4d0 | 2014-09-26 12:43:14 -0700 | [diff] [blame] | 300 | <groupId>org.livetribe.slp</groupId> |
| 301 | <artifactId>livetribe-slp</artifactId> |
| 302 | <version>2.2.1</version> |
| 303 | </dependency> |
| 304 | |
| 305 | <dependency> |
tom | dc66b38 | 2014-09-22 17:05:47 -0700 | [diff] [blame] | 306 | <groupId>com.eclipsesource.minimal-json</groupId> |
| 307 | <artifactId>minimal-json</artifactId> |
| 308 | <version>0.9.1</version> |
| 309 | </dependency> |
| 310 | <dependency> |
Yuta HIGUCHI | 8ee7d4c | 2014-10-09 23:09:41 -0700 | [diff] [blame] | 311 | <groupId>com.esotericsoftware</groupId> |
| 312 | <artifactId>kryo</artifactId> |
| 313 | <version>3.0.0</version> |
| 314 | </dependency> |
| 315 | <dependency> |
| 316 | <groupId>com.esotericsoftware</groupId> |
| 317 | <artifactId>reflectasm</artifactId> |
| 318 | <version>1.10.0</version> |
| 319 | <type>bundle</type> |
| 320 | </dependency> |
| 321 | <dependency> |
| 322 | <groupId>org.ow2.asm</groupId> |
| 323 | <artifactId>asm</artifactId> |
| 324 | <version>4.2</version> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 325 | </dependency> |
| 326 | <dependency> |
tom | 66a7eb2 | 2014-09-22 11:58:56 -0700 | [diff] [blame] | 327 | <groupId>com.esotericsoftware</groupId> |
| 328 | <artifactId>minlog</artifactId> |
| 329 | <version>1.3.0</version> |
| 330 | </dependency> |
| 331 | <dependency> |
| 332 | <groupId>org.objenesis</groupId> |
| 333 | <artifactId>objenesis</artifactId> |
| 334 | <version>2.1</version> |
| 335 | </dependency> |
Yuta HIGUCHI | 24a086b | 2014-09-21 23:28:41 -0700 | [diff] [blame] | 336 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 337 | <!-- ONOS related --> |
| 338 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 339 | <groupId>org.onosproject</groupId> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 340 | <artifactId>onlab-misc</artifactId> |
| 341 | <version>${project.version}</version> |
| 342 | </dependency> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 343 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 344 | <groupId>org.onosproject</groupId> |
tom | f110fff | 2014-09-26 00:38:18 -0700 | [diff] [blame] | 345 | <artifactId>onlab-nio</artifactId> |
| 346 | <version>${project.version}</version> |
| 347 | </dependency> |
| 348 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 349 | <groupId>org.onosproject</groupId> |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 350 | <artifactId>onlab-osgi</artifactId> |
| 351 | <version>${project.version}</version> |
| 352 | </dependency> |
| 353 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 354 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | a7a4e5d | 2015-02-11 14:20:58 -0800 | [diff] [blame] | 355 | <artifactId>onlab-osgi</artifactId> |
| 356 | <version>${project.version}</version> |
| 357 | <classifier>tests</classifier> |
| 358 | <scope>test</scope> |
| 359 | </dependency> |
| 360 | <dependency> |
| 361 | <groupId>org.onosproject</groupId> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 362 | <artifactId>onlab-junit</artifactId> |
Pavlin Radoslavov | d26f57a | 2014-10-23 17:19:45 -0700 | [diff] [blame] | 363 | <version>${project.version}</version> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 364 | <scope>test</scope> |
| 365 | </dependency> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 366 | |
| 367 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 368 | <groupId>org.onosproject</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 369 | <artifactId>onos-api</artifactId> |
| 370 | <version>${project.version}</version> |
| 371 | </dependency> |
| 372 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 373 | <groupId>org.onosproject</groupId> |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 374 | <artifactId>onos-api</artifactId> |
| 375 | <version>${project.version}</version> |
| 376 | <classifier>tests</classifier> |
| 377 | <scope>test</scope> |
| 378 | </dependency> |
| 379 | |
Thomas Vachuska | bf916ea | 2015-05-20 18:24:34 -0700 | [diff] [blame] | 380 | <dependency> |
| 381 | <groupId>org.onosproject</groupId> |
| 382 | <artifactId>onos-incubator-api</artifactId> |
| 383 | <version>${project.version}</version> |
| 384 | </dependency> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 385 | |
| 386 | <dependency> |
| 387 | <groupId>org.onosproject</groupId> |
| 388 | <artifactId>onos-core-common</artifactId> |
| 389 | <version>${project.version}</version> |
| 390 | </dependency> |
HIGUCHI Yuta | 3c994f7 | 2015-03-18 16:32:49 -0700 | [diff] [blame] | 391 | <dependency> |
| 392 | <groupId>org.onosproject</groupId> |
| 393 | <artifactId>onos-core-common</artifactId> |
| 394 | <version>${project.version}</version> |
| 395 | <classifier>tests</classifier> |
| 396 | <scope>test</scope> |
| 397 | </dependency> |
Thomas Vachuska | 02aeb03 | 2015-01-06 22:36:30 -0800 | [diff] [blame] | 398 | |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 399 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 400 | <groupId>org.onosproject</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 401 | <artifactId>onos-of-api</artifactId> |
| 402 | <version>${project.version}</version> |
| 403 | </dependency> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 404 | |
| 405 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 406 | <groupId>org.onosproject</groupId> |
Phaneendra Manda | 1c0061d | 2015-08-06 12:29:38 +0530 | [diff] [blame] | 407 | <artifactId>onos-pcepio</artifactId> |
| 408 | <version>${project.version}</version> |
| 409 | </dependency> |
| 410 | |
| 411 | <dependency> |
| 412 | <groupId>org.onosproject</groupId> |
| 413 | <artifactId>onos-pcep-controller-api</artifactId> |
| 414 | <version>${project.version}</version> |
| 415 | </dependency> |
| 416 | |
| 417 | <dependency> |
| 418 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 419 | <artifactId>onos-app-pcep-api</artifactId> |
cheng fan | 48e832c | 2015-05-29 01:54:47 +0800 | [diff] [blame] | 420 | <version>${project.version}</version> |
| 421 | </dependency> |
| 422 | <dependency> |
| 423 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 424 | <artifactId>onlab-thirdparty</artifactId> |
| 425 | <version>${project.version}</version> |
Jonathan Hart | 335ef46 | 2014-10-16 08:20:46 -0700 | [diff] [blame] | 426 | </dependency> |
| 427 | |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 428 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 429 | <groupId>org.onosproject</groupId> |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 430 | <artifactId>onos-of-api</artifactId> |
| 431 | <version>${project.version}</version> |
| 432 | <classifier>tests</classifier> |
| 433 | <scope>test</scope> |
| 434 | </dependency> |
Yuta HIGUCHI | 707a7e6 | 2014-10-02 16:35:49 -0700 | [diff] [blame] | 435 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 436 | <groupId>commons-pool</groupId> |
| 437 | <artifactId>commons-pool</artifactId> |
| 438 | <version>1.6</version> |
Yuta HIGUCHI | 707a7e6 | 2014-10-02 16:35:49 -0700 | [diff] [blame] | 439 | </dependency> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 440 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 441 | <groupId>io.netty</groupId> |
| 442 | <artifactId>netty-common</artifactId> |
| 443 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 444 | </dependency> |
| 445 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 446 | <groupId>io.netty</groupId> |
| 447 | <artifactId>netty-buffer</artifactId> |
| 448 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 449 | </dependency> |
| 450 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 451 | <groupId>io.netty</groupId> |
| 452 | <artifactId>netty-transport</artifactId> |
| 453 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 454 | </dependency> |
| 455 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 456 | <groupId>io.netty</groupId> |
| 457 | <artifactId>netty-handler</artifactId> |
| 458 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 459 | </dependency> |
| 460 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 461 | <groupId>io.netty</groupId> |
| 462 | <artifactId>netty-codec</artifactId> |
| 463 | <version>${netty4.version}</version> |
Yuta HIGUCHI | ceff7b0 | 2014-10-20 18:32:25 -0700 | [diff] [blame] | 464 | </dependency> |
Madan Jampani | 824a7c1 | 2014-10-21 09:46:15 -0700 | [diff] [blame] | 465 | <dependency> |
Thomas Vachuska | 5d42c6b | 2014-10-21 23:52:28 -0700 | [diff] [blame] | 466 | <groupId>io.netty</groupId> |
| 467 | <artifactId>netty-transport-native-epoll</artifactId> |
| 468 | <version>${netty4.version}</version> |
Madan Jampani | 1c7b878 | 2014-11-03 12:14:29 -0800 | [diff] [blame] | 469 | <classifier>${os.detected.classifier}</classifier> |
Madan Jampani | 824a7c1 | 2014-10-21 09:46:15 -0700 | [diff] [blame] | 470 | </dependency> |
Yuta HIGUCHI | b87ef95 | 2014-10-28 23:34:23 -0700 | [diff] [blame] | 471 | <dependency> |
| 472 | <groupId>joda-time</groupId> |
| 473 | <artifactId>joda-time</artifactId> |
| 474 | <version>2.5</version> |
| 475 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 476 | </dependencies> |
| 477 | </dependencyManagement> |
| 478 | |
| 479 | <dependencies> |
| 480 | <dependency> |
| 481 | <groupId>junit</groupId> |
| 482 | <artifactId>junit</artifactId> |
| 483 | </dependency> |
| 484 | <dependency> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 485 | <groupId>org.hamcrest</groupId> |
| 486 | <artifactId>hamcrest-core</artifactId> |
| 487 | </dependency> |
| 488 | <dependency> |
| 489 | <groupId>org.hamcrest</groupId> |
| 490 | <artifactId>hamcrest-library</artifactId> |
| 491 | </dependency> |
| 492 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 493 | <groupId>org.slf4j</groupId> |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 494 | <artifactId>slf4j-api</artifactId> |
| 495 | </dependency> |
| 496 | <dependency> |
| 497 | <groupId>org.slf4j</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 498 | <artifactId>slf4j-jdk14</artifactId> |
| 499 | </dependency> |
| 500 | </dependencies> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 501 | |
| 502 | <build> |
| 503 | <pluginManagement> |
| 504 | <plugins> |
| 505 | <plugin> |
| 506 | <groupId>org.apache.maven.plugins</groupId> |
| 507 | <artifactId>maven-compiler-plugin</artifactId> |
Yuta HIGUCHI | ea90aa6 | 2014-10-13 15:57:55 -0700 | [diff] [blame] | 508 | <!-- TODO: update once following issue is fixed. --> |
| 509 | <!-- https://jira.codehaus.org/browse/MCOMPILER-205 --> |
| 510 | <version>2.5.1</version> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 511 | <configuration> |
Yuta HIGUCHI | f2548cb | 2014-11-03 18:02:25 -0800 | [diff] [blame] | 512 | <source>1.8</source> |
| 513 | <target>1.8</target> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 514 | </configuration> |
| 515 | </plugin> |
| 516 | |
| 517 | <plugin> |
| 518 | <groupId>org.apache.maven.plugins</groupId> |
| 519 | <artifactId>maven-surefire-plugin</artifactId> |
HIGUCHI Yuta | 2eef94d | 2015-05-05 15:40:58 -0700 | [diff] [blame] | 520 | <version>2.18.1</version> |
tom | 6488812 | 2014-08-27 21:47:46 -0700 | [diff] [blame] | 521 | <configuration> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 522 | <redirectTestOutputToFile>true |
| 523 | </redirectTestOutputToFile> |
tom | 6488812 | 2014-08-27 21:47:46 -0700 | [diff] [blame] | 524 | <printSummary>true</printSummary> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 525 | <excludedGroups>org.onlab.junit.IntegrationTest |
| 526 | </excludedGroups> |
HIGUCHI Yuta | 2eef94d | 2015-05-05 15:40:58 -0700 | [diff] [blame] | 527 | <rerunFailingTestsCount>1</rerunFailingTestsCount> |
tom | 6488812 | 2014-08-27 21:47:46 -0700 | [diff] [blame] | 528 | </configuration> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 529 | </plugin> |
| 530 | |
| 531 | <plugin> |
| 532 | <groupId>org.apache.maven.plugins</groupId> |
| 533 | <artifactId>maven-jar-plugin</artifactId> |
| 534 | <version>2.3.1</version> |
| 535 | <executions> |
| 536 | <execution> |
| 537 | <phase>package</phase> |
| 538 | <goals> |
| 539 | <goal>test-jar</goal> |
| 540 | </goals> |
| 541 | </execution> |
| 542 | </executions> |
| 543 | </plugin> |
| 544 | |
| 545 | <plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 546 | <groupId>org.apache.maven.plugins</groupId> |
| 547 | <artifactId>maven-resources-plugin</artifactId> |
| 548 | <version>2.6</version> |
| 549 | </plugin> |
| 550 | |
| 551 | <plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 552 | <groupId>org.apache.felix</groupId> |
| 553 | <artifactId>maven-bundle-plugin</artifactId> |
Madan Jampani | 08822c4 | 2014-11-04 17:17:46 -0800 | [diff] [blame] | 554 | <version>2.5.3</version> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 555 | <extensions>true</extensions> |
alshabib | e434433 | 2015-01-28 15:30:13 -0800 | [diff] [blame] | 556 | <!-- |
| 557 | Drop following dependency when the below bug fix is published |
| 558 | https://issues.apache.org/jira/browse/FELIX-4556 |
| 559 | --> |
| 560 | <dependencies> |
| 561 | <dependency> |
| 562 | <groupId>biz.aQute.bnd</groupId> |
| 563 | <artifactId>bndlib</artifactId> |
| 564 | <version>2.4.0</version> |
| 565 | </dependency> |
| 566 | </dependencies> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 567 | </plugin> |
| 568 | |
| 569 | <plugin> |
Thomas Vachuska | 01a6ec0 | 2014-11-05 09:54:09 -0800 | [diff] [blame] | 570 | <groupId>org.apache.maven.plugins</groupId> |
| 571 | <artifactId>maven-shade-plugin</artifactId> |
| 572 | <version>2.3</version> |
| 573 | </plugin> |
| 574 | |
| 575 | <plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 576 | <groupId>org.apache.felix</groupId> |
| 577 | <artifactId>maven-scr-plugin</artifactId> |
Yuta HIGUCHI | f2548cb | 2014-11-03 18:02:25 -0800 | [diff] [blame] | 578 | <version>1.20.0</version> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 579 | <executions> |
| 580 | <execution> |
| 581 | <id>generate-scr-srcdescriptor</id> |
| 582 | <goals> |
| 583 | <goal>scr</goal> |
| 584 | </goals> |
| 585 | </execution> |
| 586 | </executions> |
| 587 | <configuration> |
| 588 | <supportedProjectTypes> |
| 589 | <supportedProjectType>bundle</supportedProjectType> |
| 590 | <supportedProjectType>war</supportedProjectType> |
| 591 | </supportedProjectTypes> |
| 592 | </configuration> |
| 593 | </plugin> |
Ray Milkey | 241b96a | 2014-11-17 13:08:20 -0800 | [diff] [blame] | 594 | <plugin> |
Thomas Vachuska | a8f4e7d | 2015-01-08 17:31:55 -0800 | [diff] [blame] | 595 | <groupId>org.codehaus.mojo</groupId> |
| 596 | <artifactId>findbugs-maven-plugin</artifactId> |
| 597 | <version>3.0.0</version> |
| 598 | <dependencies> |
| 599 | <dependency> |
| 600 | <groupId>org.onosproject</groupId> |
| 601 | <artifactId>onos-build-conf</artifactId> |
| 602 | <version>1.0</version> |
| 603 | </dependency> |
| 604 | </dependencies> |
| 605 | <configuration> |
| 606 | <effort>Max</effort> |
| 607 | <excludeFilterFile>onos/findbugs-suppressions.xml |
| 608 | </excludeFilterFile> |
| 609 | </configuration> |
Ray Milkey | 241b96a | 2014-11-17 13:08:20 -0800 | [diff] [blame] | 610 | </plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 611 | |
Brian O'Connor | eaa47be | 2015-03-17 20:57:47 -0700 | [diff] [blame] | 612 | <!-- This version needs to be updated manually when changes are made to onos-maven-plugin --> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 613 | <plugin> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 614 | <groupId>org.onosproject</groupId> |
| 615 | <artifactId>onos-maven-plugin</artifactId> |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 616 | <version>1.5-SNAPSHOT</version> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 617 | <executions> |
| 618 | <execution> |
Brian O'Connor | 5819b0a | 2015-04-14 15:03:06 -0700 | [diff] [blame] | 619 | <id>cfg</id> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 620 | <phase>generate-resources</phase> |
| 621 | <goals> |
| 622 | <goal>cfg</goal> |
| 623 | </goals> |
| 624 | </execution> |
Brian O'Connor | 5819b0a | 2015-04-14 15:03:06 -0700 | [diff] [blame] | 625 | <execution> |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 626 | <id>swagger</id> |
Thomas Vachuska | 0fa2aa1 | 2015-08-18 12:53:04 -0700 | [diff] [blame] | 627 | <phase>generate-sources</phase> |
Sahil Lele | 372d1f3 | 2015-07-31 15:01:41 -0700 | [diff] [blame] | 628 | <goals> |
| 629 | <goal>swagger</goal> |
| 630 | </goals> |
| 631 | </execution> |
| 632 | <execution> |
Brian O'Connor | 5819b0a | 2015-04-14 15:03:06 -0700 | [diff] [blame] | 633 | <id>app</id> |
| 634 | <phase>package</phase> |
| 635 | <goals> |
| 636 | <goal>app</goal> |
| 637 | </goals> |
| 638 | </execution> |
Thomas Vachuska | 8c8b037 | 2015-03-10 11:11:24 -0700 | [diff] [blame] | 639 | </executions> |
Brian O'Connor | f3d0616 | 2014-10-02 15:54:12 -0700 | [diff] [blame] | 640 | </plugin> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 641 | </plugins> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 642 | </pluginManagement> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 643 | |
| 644 | <plugins> |
| 645 | <plugin> |
| 646 | <groupId>org.apache.maven.plugins</groupId> |
tom | e33cc1a | 2014-08-25 21:59:41 -0700 | [diff] [blame] | 647 | <artifactId>maven-jar-plugin</artifactId> |
| 648 | </plugin> |
| 649 | |
| 650 | <plugin> |
| 651 | <groupId>org.apache.maven.plugins</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 652 | <artifactId>maven-checkstyle-plugin</artifactId> |
Yuta HIGUCHI | ee0ae6c | 2014-10-18 18:11:57 -0700 | [diff] [blame] | 653 | <version>2.13</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 654 | <dependencies> |
| 655 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 656 | <groupId>org.onosproject</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 657 | <artifactId>onos-build-conf</artifactId> |
| 658 | <version>1.0</version> |
| 659 | </dependency> |
Madan Jampani | 08822c4 | 2014-11-04 17:17:46 -0800 | [diff] [blame] | 660 | <!-- For Java 8 lambda support--> |
| 661 | <dependency> |
| 662 | <groupId>com.puppycrawl.tools</groupId> |
| 663 | <artifactId>checkstyle</artifactId> |
| 664 | <version>5.9</version> |
| 665 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 666 | </dependencies> |
| 667 | <configuration> |
Toshio Koide | d7d9641 | 2014-11-05 11:56:07 -0800 | [diff] [blame] | 668 | <!-- begin: workaround for unexpected NullPointerException on Eclipse --> |
Thomas Vachuska | a8f4e7d | 2015-01-08 17:31:55 -0800 | [diff] [blame] | 669 | <sourceDirectory>${project.build.sourceDirectory} |
| 670 | </sourceDirectory> |
| 671 | <testSourceDirectory>${project.build.testSourceDirectory} |
| 672 | </testSourceDirectory> |
Toshio Koide | d7d9641 | 2014-11-05 11:56:07 -0800 | [diff] [blame] | 673 | <!-- end: workaround for unexpected NullPointerException on Eclipse --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 674 | <configLocation>onos/checkstyle.xml</configLocation> |
| 675 | <suppressionsLocation>onos/suppressions.xml |
| 676 | </suppressionsLocation> |
| 677 | <failsOnError>false</failsOnError> |
| 678 | <logViolationsToConsole>true</logViolationsToConsole> |
| 679 | <includeTestSourceDirectory>true |
| 680 | </includeTestSourceDirectory> |
| 681 | </configuration> |
| 682 | <executions> |
| 683 | <execution> |
| 684 | <id>validate-checkstyle</id> |
| 685 | <phase>verify</phase> |
| 686 | <goals> |
| 687 | <goal>check</goal> |
| 688 | </goals> |
| 689 | </execution> |
| 690 | </executions> |
| 691 | </plugin> |
| 692 | |
| 693 | <plugin> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 694 | <groupId>org.apache.maven.plugins</groupId> |
| 695 | <artifactId>maven-pmd-plugin</artifactId> |
| 696 | <version>3.2</version> |
| 697 | <configuration> |
| 698 | <excludes> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 699 | </excludes> |
| 700 | <rulesets> |
| 701 | <ruleset>onos/pmd.xml</ruleset> |
| 702 | </rulesets> |
| 703 | </configuration> |
| 704 | <executions> |
| 705 | <execution> |
| 706 | <id>validate-pmd</id> |
| 707 | <phase>verify</phase> |
| 708 | <goals> |
| 709 | <!-- Uncomment this goal to make the build fail on pmd errors --> |
| 710 | <!--<goal>check</goal>--> |
| 711 | </goals> |
| 712 | </execution> |
| 713 | </executions> |
| 714 | </plugin> |
| 715 | |
| 716 | <plugin> |
tom | 4f3b18b | 2014-08-28 14:38:47 -0700 | [diff] [blame] | 717 | <groupId>org.jacoco</groupId> |
| 718 | <artifactId>jacoco-maven-plugin</artifactId> |
Yuta HIGUCHI | f61665d | 2015-02-04 12:14:09 -0800 | [diff] [blame] | 719 | <version>0.7.2.201409121644</version> |
tom | 4f3b18b | 2014-08-28 14:38:47 -0700 | [diff] [blame] | 720 | <executions> |
| 721 | <execution> |
| 722 | <id>default-prepare-agent</id> |
| 723 | <goals> |
| 724 | <goal>prepare-agent</goal> |
| 725 | </goals> |
| 726 | </execution> |
| 727 | <execution> |
| 728 | <id>default-report</id> |
| 729 | <phase>prepare-package</phase> |
| 730 | <goals> |
| 731 | <goal>report</goal> |
| 732 | </goals> |
| 733 | </execution> |
| 734 | </executions> |
| 735 | </plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 736 | </plugins> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 737 | </build> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 738 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 739 | <reporting> |
| 740 | <plugins> |
| 741 | <plugin> |
| 742 | <groupId>org.apache.maven.plugins</groupId> |
| 743 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 744 | <version>2.12.1</version> |
| 745 | <configuration> |
Ray Milkey | 0f98ca2 | 2014-11-17 17:12:38 -0800 | [diff] [blame] | 746 | <configLocation>onos/checkstyle.xml</configLocation> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 747 | </configuration> |
| 748 | </plugin> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 749 | |
| 750 | <plugin> |
| 751 | <groupId>org.apache.maven.plugins</groupId> |
| 752 | <artifactId>maven-pmd-plugin</artifactId> |
| 753 | <version>3.2</version> |
| 754 | <configuration> |
| 755 | <excludes> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 756 | </excludes> |
| 757 | <rulesets> |
Ray Milkey | 0f98ca2 | 2014-11-17 17:12:38 -0800 | [diff] [blame] | 758 | <ruleset>onos/pmd.xml</ruleset> |
tom | 50a76dd | 2014-09-02 15:18:35 -0700 | [diff] [blame] | 759 | </rulesets> |
| 760 | </configuration> |
| 761 | </plugin> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 762 | </plugins> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 763 | </reporting> |
alshabib | 522d987 | 2014-08-15 10:35:16 -0700 | [diff] [blame] | 764 | </project> |