Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Shawn O. Pearce | a1d4187 | 2009-03-27 20:08:14 -0700 | [diff] [blame] | 3 | Copyright (C) 2008 The Android Open Source Project |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [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" |
| 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> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 21 | |
| 22 | <groupId>com.google.gerrit</groupId> |
| 23 | <artifactId>gerrit-parent</artifactId> |
| 24 | <packaging>pom</packaging> |
Shawn O. Pearce | f855f39 | 2010-08-12 16:24:40 -0700 | [diff] [blame] | 25 | <version>2.1-SNAPSHOT</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 26 | |
| 27 | <name>Gerrit Code Review - Parent</name> |
| 28 | <url>http://code.google.com/p/gerrit/</url> |
| 29 | |
| 30 | <description> |
| 31 | Gerrit - Web Based Code Review |
| 32 | </description> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 33 | |
| 34 | <mailingLists> |
| 35 | <mailingList> |
| 36 | <name>repo-discuss mailing list</name> |
| 37 | <post>repo-discuss@googlegroups.com</post> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 38 | <archive>http://groups.google.com/group/repo-discuss</archive> |
| 39 | <subscribe>http://groups.google.com/group/repo-discuss/subscribe</subscribe> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 40 | </mailingList> |
| 41 | </mailingLists> |
| 42 | |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 43 | <issueManagement> |
| 44 | <url>http://code.google.com/p/gerrit/issues/list</url> |
| 45 | <system>Google Code</system> |
| 46 | </issueManagement> |
| 47 | |
| 48 | <properties> |
Shawn O. Pearce | e3e9a9e | 2010-12-08 14:27:51 -0800 | [diff] [blame] | 49 | <jgitVersion>0.9.3.298-g18abb81</jgitVersion> |
Shawn O. Pearce | f2094d5 | 2010-02-22 08:32:05 -0800 | [diff] [blame] | 50 | <gwtormVersion>1.1.4</gwtormVersion> |
| 51 | <gwtjsonrpcVersion>1.2.2</gwtjsonrpcVersion> |
Shawn O. Pearce | 4f0d56a | 2010-08-19 17:17:14 -0700 | [diff] [blame] | 52 | <gwtexpuiVersion>1.2.2</gwtexpuiVersion> |
Anatol Pomazau | d4c502f | 2010-07-16 22:36:19 -0700 | [diff] [blame] | 53 | <gwtVersion>2.0.4</gwtVersion> |
| 54 | <slf4jVersion>1.6.1</slf4jVersion> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 55 | <guiceVersion>2.0</guiceVersion> |
Shawn O. Pearce | ef16a18 | 2010-12-06 18:10:38 -0800 | [diff] [blame] | 56 | <jettyVersion>7.2.1.v20101111</jettyVersion> |
Shawn O. Pearce | e43a803 | 2009-12-30 11:30:33 -0800 | [diff] [blame] | 57 | <keyappletVersion>1.0</keyappletVersion> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 58 | |
Shawn O. Pearce | ba60897 | 2009-12-19 18:55:03 -0800 | [diff] [blame] | 59 | <gwt.soyc>false</gwt.soyc> |
| 60 | |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 61 | <project.build.sourceEncoding> |
| 62 | UTF-8 |
| 63 | </project.build.sourceEncoding> |
| 64 | <project.reporting.outputEncoding> |
| 65 | UTF-8 |
| 66 | </project.reporting.outputEncoding> |
| 67 | </properties> |
| 68 | |
| 69 | <modules> |
| 70 | <module>gerrit-patch-commonsnet</module> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 71 | <module>gerrit-patch-jgit</module> |
| 72 | |
| 73 | <module>gerrit-util-cli</module> |
| 74 | <module>gerrit-util-ssl</module> |
| 75 | |
| 76 | <module>gerrit-common</module> |
| 77 | <module>gerrit-httpd</module> |
Shawn O. Pearce | 6ee0554 | 2009-12-18 15:33:35 -0800 | [diff] [blame] | 78 | <module>gerrit-launcher</module> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 79 | <module>gerrit-main</module> |
| 80 | <module>gerrit-pgm</module> |
Shawn O. Pearce | 8db22c8 | 2010-01-30 16:12:29 -0800 | [diff] [blame] | 81 | <module>gerrit-prettify</module> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 82 | <module>gerrit-reviewdb</module> |
| 83 | <module>gerrit-server</module> |
| 84 | <module>gerrit-sshd</module> |
Anatol Pomazau | cce4dae | 2010-07-08 21:06:04 -0700 | [diff] [blame] | 85 | <module>gerrit-gwtdebug</module> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 86 | <module>gerrit-war</module> |
| 87 | |
| 88 | <module>gerrit-gwtui</module> |
| 89 | </modules> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 90 | |
| 91 | <licenses> |
| 92 | <license> |
| 93 | <name>Apache License, 2.0</name> |
| 94 | <comments> |
| 95 | Apache License |
| 96 | Version 2.0, January 2004 |
| 97 | http://www.apache.org/licenses/ |
| 98 | |
| 99 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION |
| 100 | |
| 101 | 1. Definitions. |
| 102 | |
| 103 | "License" shall mean the terms and conditions for use, reproduction, |
| 104 | and distribution as defined by Sections 1 through 9 of this document. |
| 105 | |
| 106 | "Licensor" shall mean the copyright owner or entity authorized by |
| 107 | the copyright owner that is granting the License. |
| 108 | |
| 109 | "Legal Entity" shall mean the union of the acting entity and all |
| 110 | other entities that control, are controlled by, or are under common |
| 111 | control with that entity. For the purposes of this definition, |
| 112 | "control" means (i) the power, direct or indirect, to cause the |
| 113 | direction or management of such entity, whether by contract or |
| 114 | otherwise, or (ii) ownership of fifty percent (50%) or more of the |
| 115 | outstanding shares, or (iii) beneficial ownership of such entity. |
| 116 | |
| 117 | "You" (or "Your") shall mean an individual or Legal Entity |
| 118 | exercising permissions granted by this License. |
| 119 | |
| 120 | "Source" form shall mean the preferred form for making modifications, |
| 121 | including but not limited to software source code, documentation |
| 122 | source, and configuration files. |
| 123 | |
| 124 | "Object" form shall mean any form resulting from mechanical |
| 125 | transformation or translation of a Source form, including but |
| 126 | not limited to compiled object code, generated documentation, |
| 127 | and conversions to other media types. |
| 128 | |
| 129 | "Work" shall mean the work of authorship, whether in Source or |
| 130 | Object form, made available under the License, as indicated by a |
| 131 | copyright notice that is included in or attached to the work |
| 132 | (an example is provided in the Appendix below). |
| 133 | |
| 134 | "Derivative Works" shall mean any work, whether in Source or Object |
| 135 | form, that is based on (or derived from) the Work and for which the |
| 136 | editorial revisions, annotations, elaborations, or other modifications |
| 137 | represent, as a whole, an original work of authorship. For the purposes |
| 138 | of this License, Derivative Works shall not include works that remain |
| 139 | separable from, or merely link (or bind by name) to the interfaces of, |
| 140 | the Work and Derivative Works thereof. |
| 141 | |
| 142 | "Contribution" shall mean any work of authorship, including |
| 143 | the original version of the Work and any modifications or additions |
| 144 | to that Work or Derivative Works thereof, that is intentionally |
| 145 | submitted to Licensor for inclusion in the Work by the copyright owner |
| 146 | or by an individual or Legal Entity authorized to submit on behalf of |
| 147 | the copyright owner. For the purposes of this definition, "submitted" |
| 148 | means any form of electronic, verbal, or written communication sent |
| 149 | to the Licensor or its representatives, including but not limited to |
| 150 | communication on electronic mailing lists, source code control systems, |
| 151 | and issue tracking systems that are managed by, or on behalf of, the |
| 152 | Licensor for the purpose of discussing and improving the Work, but |
| 153 | excluding communication that is conspicuously marked or otherwise |
| 154 | designated in writing by the copyright owner as "Not a Contribution." |
| 155 | |
| 156 | "Contributor" shall mean Licensor and any individual or Legal Entity |
| 157 | on behalf of whom a Contribution has been received by Licensor and |
| 158 | subsequently incorporated within the Work. |
| 159 | |
| 160 | 2. Grant of Copyright License. Subject to the terms and conditions of |
| 161 | this License, each Contributor hereby grants to You a perpetual, |
| 162 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
| 163 | copyright license to reproduce, prepare Derivative Works of, |
| 164 | publicly display, publicly perform, sublicense, and distribute the |
| 165 | Work and such Derivative Works in Source or Object form. |
| 166 | |
| 167 | 3. Grant of Patent License. Subject to the terms and conditions of |
| 168 | this License, each Contributor hereby grants to You a perpetual, |
| 169 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
| 170 | (except as stated in this section) patent license to make, have made, |
| 171 | use, offer to sell, sell, import, and otherwise transfer the Work, |
| 172 | where such license applies only to those patent claims licensable |
| 173 | by such Contributor that are necessarily infringed by their |
| 174 | Contribution(s) alone or by combination of their Contribution(s) |
| 175 | with the Work to which such Contribution(s) was submitted. If You |
| 176 | institute patent litigation against any entity (including a |
| 177 | cross-claim or counterclaim in a lawsuit) alleging that the Work |
| 178 | or a Contribution incorporated within the Work constitutes direct |
| 179 | or contributory patent infringement, then any patent licenses |
| 180 | granted to You under this License for that Work shall terminate |
| 181 | as of the date such litigation is filed. |
| 182 | |
| 183 | 4. Redistribution. You may reproduce and distribute copies of the |
| 184 | Work or Derivative Works thereof in any medium, with or without |
| 185 | modifications, and in Source or Object form, provided that You |
| 186 | meet the following conditions: |
| 187 | |
| 188 | (a) You must give any other recipients of the Work or |
| 189 | Derivative Works a copy of this License; and |
| 190 | |
| 191 | (b) You must cause any modified files to carry prominent notices |
| 192 | stating that You changed the files; and |
| 193 | |
| 194 | (c) You must retain, in the Source form of any Derivative Works |
| 195 | that You distribute, all copyright, patent, trademark, and |
| 196 | attribution notices from the Source form of the Work, |
| 197 | excluding those notices that do not pertain to any part of |
| 198 | the Derivative Works; and |
| 199 | |
| 200 | (d) If the Work includes a "NOTICE" text file as part of its |
| 201 | distribution, then any Derivative Works that You distribute must |
| 202 | include a readable copy of the attribution notices contained |
| 203 | within such NOTICE file, excluding those notices that do not |
| 204 | pertain to any part of the Derivative Works, in at least one |
| 205 | of the following places: within a NOTICE text file distributed |
| 206 | as part of the Derivative Works; within the Source form or |
| 207 | documentation, if provided along with the Derivative Works; or, |
| 208 | within a display generated by the Derivative Works, if and |
| 209 | wherever such third-party notices normally appear. The contents |
| 210 | of the NOTICE file are for informational purposes only and |
| 211 | do not modify the License. You may add Your own attribution |
| 212 | notices within Derivative Works that You distribute, alongside |
| 213 | or as an addendum to the NOTICE text from the Work, provided |
| 214 | that such additional attribution notices cannot be construed |
| 215 | as modifying the License. |
| 216 | |
| 217 | You may add Your own copyright statement to Your modifications and |
| 218 | may provide additional or different license terms and conditions |
| 219 | for use, reproduction, or distribution of Your modifications, or |
| 220 | for any such Derivative Works as a whole, provided Your use, |
| 221 | reproduction, and distribution of the Work otherwise complies with |
| 222 | the conditions stated in this License. |
| 223 | |
| 224 | 5. Submission of Contributions. Unless You explicitly state otherwise, |
| 225 | any Contribution intentionally submitted for inclusion in the Work |
| 226 | by You to the Licensor shall be under the terms and conditions of |
| 227 | this License, without any additional terms or conditions. |
| 228 | Notwithstanding the above, nothing herein shall supersede or modify |
| 229 | the terms of any separate license agreement you may have executed |
| 230 | with Licensor regarding such Contributions. |
| 231 | |
| 232 | 6. Trademarks. This License does not grant permission to use the trade |
| 233 | names, trademarks, service marks, or product names of the Licensor, |
| 234 | except as required for reasonable and customary use in describing the |
| 235 | origin of the Work and reproducing the content of the NOTICE file. |
| 236 | |
| 237 | 7. Disclaimer of Warranty. Unless required by applicable law or |
| 238 | agreed to in writing, Licensor provides the Work (and each |
| 239 | Contributor provides its Contributions) on an "AS IS" BASIS, |
| 240 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 241 | implied, including, without limitation, any warranties or conditions |
| 242 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A |
| 243 | PARTICULAR PURPOSE. You are solely responsible for determining the |
| 244 | appropriateness of using or redistributing the Work and assume any |
| 245 | risks associated with Your exercise of permissions under this License. |
| 246 | |
| 247 | 8. Limitation of Liability. In no event and under no legal theory, |
| 248 | whether in tort (including negligence), contract, or otherwise, |
| 249 | unless required by applicable law (such as deliberate and grossly |
| 250 | negligent acts) or agreed to in writing, shall any Contributor be |
| 251 | liable to You for damages, including any direct, indirect, special, |
| 252 | incidental, or consequential damages of any character arising as a |
| 253 | result of this License or out of the use or inability to use the |
| 254 | Work (including but not limited to damages for loss of goodwill, |
| 255 | work stoppage, computer failure or malfunction, or any and all |
| 256 | other commercial damages or losses), even if such Contributor |
| 257 | has been advised of the possibility of such damages. |
| 258 | |
| 259 | 9. Accepting Warranty or Additional Liability. While redistributing |
| 260 | the Work or Derivative Works thereof, You may choose to offer, |
| 261 | and charge a fee for, acceptance of support, warranty, indemnity, |
| 262 | or other liability obligations and/or rights consistent with this |
| 263 | License. However, in accepting such obligations, You may act only |
| 264 | on Your own behalf and on Your sole responsibility, not on behalf |
| 265 | of any other Contributor, and only if You agree to indemnify, |
| 266 | defend, and hold each Contributor harmless for any liability |
| 267 | incurred by, or claims asserted against, such Contributor by reason |
| 268 | of your accepting any such warranty or additional liability. |
| 269 | |
| 270 | END OF TERMS AND CONDITIONS |
| 271 | |
| 272 | APPENDIX: How to apply the Apache License to your work. |
| 273 | |
| 274 | To apply the Apache License to your work, attach the following |
| 275 | boilerplate notice, with the fields enclosed by brackets "[]" |
| 276 | replaced with your own identifying information. (Don't include |
| 277 | the brackets!) The text should be enclosed in the appropriate |
| 278 | comment syntax for the file format. We also recommend that a |
| 279 | file or class name and description of purpose be included on the |
| 280 | same "printed page" as the copyright notice for easier |
| 281 | identification within third-party archives. |
| 282 | |
| 283 | Copyright [yyyy] [name of copyright owner] |
| 284 | |
| 285 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 286 | you may not use this file except in compliance with the License. |
| 287 | You may obtain a copy of the License at |
| 288 | |
| 289 | http://www.apache.org/licenses/LICENSE-2.0 |
| 290 | |
| 291 | Unless required by applicable law or agreed to in writing, software |
| 292 | distributed under the License is distributed on an "AS IS" BASIS, |
| 293 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 294 | See the License for the specific language governing permissions and |
| 295 | limitations under the License. |
| 296 | </comments> |
| 297 | </license> |
| 298 | </licenses> |
| 299 | |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 300 | <build> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 301 | <pluginManagement> |
| 302 | <plugins> |
| 303 | <plugin> |
| 304 | <groupId>org.apache.maven.plugins</groupId> |
| 305 | <artifactId>maven-jar-plugin</artifactId> |
| 306 | <configuration> |
| 307 | <archive> |
| 308 | <manifestEntries> |
| 309 | <Implementation-Title>Gerrit Code Review - ${project.artifactId}</Implementation-Title> |
| 310 | <Implementation-Version>${project.version}</Implementation-Version> |
| 311 | <Implementation-Vendor>Gerrit Code Review</Implementation-Vendor> |
| 312 | <Implementation-Vendor-Id>com.google.gerrit</Implementation-Vendor-Id> |
| 313 | <Implementation-Vendor-URL>http://code.google.com/p/gerrit/</Implementation-Vendor-URL> |
| 314 | </manifestEntries> |
| 315 | </archive> |
| 316 | </configuration> |
| 317 | </plugin> |
| 318 | |
| 319 | <plugin> |
Shawn O. Pearce | b150f25 | 2009-12-30 10:14:58 -0800 | [diff] [blame] | 320 | <groupId>org.apache.maven.plugins</groupId> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 321 | <artifactId>maven-compiler-plugin</artifactId> |
Anatol Pomozov | 0de5755 | 2010-11-09 15:56:47 -0800 | [diff] [blame^] | 322 | <version>2.3.2</version> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 323 | </plugin> |
| 324 | |
| 325 | <plugin> |
| 326 | <groupId>org.apache.maven.plugins</groupId> |
| 327 | <artifactId>maven-shade-plugin</artifactId> |
Anatol Pomozov | 0de5755 | 2010-11-09 15:56:47 -0800 | [diff] [blame^] | 328 | <version>1.4</version> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 329 | </plugin> |
| 330 | |
| 331 | <plugin> |
| 332 | <groupId>org.apache.maven.plugins</groupId> |
| 333 | <artifactId>maven-antrun-plugin</artifactId> |
Anatol Pomozov | 0de5755 | 2010-11-09 15:56:47 -0800 | [diff] [blame^] | 334 | <version>1.6</version> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 335 | </plugin> |
| 336 | |
| 337 | <plugin> |
| 338 | <groupId>org.apache.maven.plugins</groupId> |
| 339 | <artifactId>maven-war-plugin</artifactId> |
Anatol Pomozov | 0de5755 | 2010-11-09 15:56:47 -0800 | [diff] [blame^] | 340 | <version>2.1.1</version> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 341 | </plugin> |
| 342 | |
| 343 | <plugin> |
| 344 | <groupId>org.apache.maven.plugins</groupId> |
| 345 | <artifactId>maven-dependency-plugin</artifactId> |
| 346 | <version>2.1</version> |
| 347 | </plugin> |
| 348 | |
| 349 | <plugin> |
| 350 | <groupId>org.antlr</groupId> |
| 351 | <artifactId>antlr3-maven-plugin</artifactId> |
| 352 | <version>3.1.1</version> |
| 353 | </plugin> |
| 354 | |
| 355 | <plugin> |
| 356 | <groupId>org.codehaus.mojo</groupId> |
| 357 | <artifactId>gwt-maven-plugin</artifactId> |
| 358 | <version>1.2</version> |
| 359 | </plugin> |
| 360 | |
| 361 | <plugin> |
| 362 | <groupId>org.codehaus.mojo</groupId> |
| 363 | <artifactId>build-helper-maven-plugin</artifactId> |
Anatol Pomozov | 0de5755 | 2010-11-09 15:56:47 -0800 | [diff] [blame^] | 364 | <version>1.6</version> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 365 | </plugin> |
| 366 | </plugins> |
| 367 | </pluginManagement> |
| 368 | |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 369 | <plugins> |
| 370 | <plugin> |
Shawn O. Pearce | b150f25 | 2009-12-30 10:14:58 -0800 | [diff] [blame] | 371 | <groupId>org.apache.maven.plugins</groupId> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 372 | <artifactId>maven-compiler-plugin</artifactId> |
| 373 | <configuration> |
Shawn O. Pearce | 0da2b72 | 2009-05-12 17:21:02 -0700 | [diff] [blame] | 374 | <source>1.6</source> |
| 375 | <target>1.6</target> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 376 | <encoding>UTF-8</encoding> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 377 | </configuration> |
| 378 | </plugin> |
Shawn O. Pearce | 03273c9 | 2009-01-13 10:32:50 -0800 | [diff] [blame] | 379 | |
| 380 | <plugin> |
Shawn O. Pearce | b150f25 | 2009-12-30 10:14:58 -0800 | [diff] [blame] | 381 | <groupId>org.apache.maven.plugins</groupId> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 382 | <artifactId>maven-source-plugin</artifactId> |
Shawn O. Pearce | b8527ea | 2009-02-02 15:39:12 -0800 | [diff] [blame] | 383 | <executions> |
| 384 | <execution> |
| 385 | <goals> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 386 | <goal>jar</goal> |
Shawn O. Pearce | b8527ea | 2009-02-02 15:39:12 -0800 | [diff] [blame] | 387 | </goals> |
| 388 | </execution> |
Shawn O. Pearce | 03273c9 | 2009-01-13 10:32:50 -0800 | [diff] [blame] | 389 | </executions> |
| 390 | </plugin> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 391 | </plugins> |
| 392 | </build> |
| 393 | |
| 394 | <dependencies> |
| 395 | <dependency> |
Shawn O. Pearce | 54c91ec | 2009-08-12 19:00:42 -0700 | [diff] [blame] | 396 | <groupId>junit</groupId> |
| 397 | <artifactId>junit</artifactId> |
Shawn O. Pearce | f81dd8d | 2009-11-05 12:33:37 -0800 | [diff] [blame] | 398 | <scope>test</scope> |
| 399 | </dependency> |
| 400 | |
| 401 | <dependency> |
Shawn O. Pearce | 3f4b1d0 | 2009-09-10 16:04:43 -0700 | [diff] [blame] | 402 | <groupId>org.easymock</groupId> |
| 403 | <artifactId>easymock</artifactId> |
Shawn O. Pearce | 3f4b1d0 | 2009-09-10 16:04:43 -0700 | [diff] [blame] | 404 | <scope>test</scope> |
| 405 | </dependency> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 406 | </dependencies> |
| 407 | |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 408 | <dependencyManagement> |
| 409 | <dependencies> |
| 410 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 411 | <groupId>gwtorm</groupId> |
| 412 | <artifactId>gwtorm</artifactId> |
| 413 | <version>${gwtormVersion}</version> |
| 414 | </dependency> |
| 415 | <dependency> |
| 416 | <groupId>gwtorm</groupId> |
| 417 | <artifactId>gwtorm</artifactId> |
| 418 | <version>${gwtormVersion}</version> |
| 419 | <classifier>sources</classifier> |
| 420 | </dependency> |
| 421 | |
| 422 | <dependency> |
| 423 | <groupId>gwtjsonrpc</groupId> |
| 424 | <artifactId>gwtjsonrpc</artifactId> |
| 425 | <version>${gwtjsonrpcVersion}</version> |
| 426 | </dependency> |
| 427 | <dependency> |
| 428 | <groupId>gwtjsonrpc</groupId> |
| 429 | <artifactId>gwtjsonrpc</artifactId> |
| 430 | <version>${gwtjsonrpcVersion}</version> |
| 431 | <classifier>sources</classifier> |
| 432 | </dependency> |
| 433 | |
| 434 | <dependency> |
| 435 | <groupId>gwtexpui</groupId> |
| 436 | <artifactId>gwtexpui</artifactId> |
| 437 | <version>${gwtexpuiVersion}</version> |
| 438 | </dependency> |
| 439 | <dependency> |
| 440 | <groupId>gwtexpui</groupId> |
| 441 | <artifactId>gwtexpui</artifactId> |
| 442 | <version>${gwtexpuiVersion}</version> |
| 443 | <classifier>sources</classifier> |
| 444 | </dependency> |
| 445 | |
| 446 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 447 | <groupId>org.openid4java</groupId> |
| 448 | <artifactId>openid4java-consumer</artifactId> |
| 449 | <version>0.9.5</version> |
| 450 | <exclusions> |
| 451 | <exclusion> |
| 452 | <!-- jug-1.1 is LGPL, and the source has been lost --> |
| 453 | <groupId>jug</groupId> |
| 454 | <artifactId>jug</artifactId> |
| 455 | </exclusion> |
| 456 | <exclusion> |
| 457 | <!-- not required on Java 5 or later --> |
| 458 | <groupId>xml-apis</groupId> |
| 459 | <artifactId>xml-apis</artifactId> |
| 460 | </exclusion> |
Shawn O. Pearce | be5b01c | 2010-02-23 07:33:40 -0800 | [diff] [blame] | 461 | |
| 462 | <!-- optional, we aren't bothering with XRI support --> |
| 463 | <exclusion> |
| 464 | <groupId>org.openxri</groupId> |
| 465 | <artifactId>openxri</artifactId> |
| 466 | </exclusion> |
| 467 | <exclusion> |
| 468 | <groupId>xml-security</groupId> |
| 469 | <artifactId>xmlsec</artifactId> |
| 470 | </exclusion> |
| 471 | <exclusion> |
| 472 | <groupId>xalan</groupId> |
| 473 | <artifactId>xalan</artifactId> |
| 474 | </exclusion> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 475 | </exclusions> |
| 476 | </dependency> |
| 477 | |
| 478 | <dependency> |
| 479 | <groupId>org.apache.sshd</groupId> |
| 480 | <artifactId>sshd-core</artifactId> |
Shawn O. Pearce | 7ada9e7 | 2010-11-09 14:10:26 -0800 | [diff] [blame] | 481 | <version>0.5.1-r1033260</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 482 | </dependency> |
| 483 | |
| 484 | <dependency> |
Martin Fick | bfa5a18 | 2010-07-20 14:16:20 -0600 | [diff] [blame] | 485 | <groupId>org.apache.velocity</groupId> |
| 486 | <artifactId>velocity</artifactId> |
| 487 | <version>1.6.4</version> |
| 488 | </dependency> |
| 489 | |
| 490 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 491 | <groupId>net.sf.ehcache</groupId> |
| 492 | <artifactId>ehcache-core</artifactId> |
Shawn O. Pearce | 1e25d43 | 2010-02-08 11:01:09 -0800 | [diff] [blame] | 493 | <version>1.7.2</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 494 | </dependency> |
| 495 | |
| 496 | <dependency> |
| 497 | <groupId>args4j</groupId> |
| 498 | <artifactId>args4j</artifactId> |
| 499 | <version>2.0.16</version> |
| 500 | </dependency> |
| 501 | |
| 502 | <dependency> |
| 503 | <groupId>com.google.code.guice</groupId> |
| 504 | <artifactId>guice</artifactId> |
| 505 | <version>${guiceVersion}</version> |
| 506 | </dependency> |
| 507 | |
| 508 | <dependency> |
| 509 | <groupId>com.google.code.guice</groupId> |
| 510 | <artifactId>guice-servlet</artifactId> |
| 511 | <version>${guiceVersion}</version> |
| 512 | </dependency> |
| 513 | |
| 514 | <dependency> |
| 515 | <groupId>com.google.code.guice</groupId> |
| 516 | <artifactId>guice-assistedinject</artifactId> |
| 517 | <version>${guiceVersion}</version> |
| 518 | </dependency> |
| 519 | |
| 520 | <dependency> |
| 521 | <!-- required by Guice (whose POM is fake and lacks it) --> |
| 522 | <groupId>aopalliance</groupId> |
| 523 | <artifactId>aopalliance</artifactId> |
| 524 | <version>1.0</version> |
| 525 | </dependency> |
| 526 | |
| 527 | <dependency> |
Shawn O. Pearce | f95bea4 | 2010-04-08 14:35:28 -0700 | [diff] [blame] | 528 | <groupId>com.google.code.gson</groupId> |
| 529 | <artifactId>gson</artifactId> |
| 530 | <version>1.4</version> |
| 531 | </dependency> |
| 532 | |
| 533 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 534 | <groupId>commons-net</groupId> |
| 535 | <artifactId>commons-net</artifactId> |
Shawn O. Pearce | 42dfb59 | 2010-07-29 18:48:10 -0700 | [diff] [blame] | 536 | <version>2.0</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 537 | </dependency> |
| 538 | |
| 539 | <dependency> |
| 540 | <groupId>commons-codec</groupId> |
| 541 | <artifactId>commons-codec</artifactId> |
Shawn O. Pearce | 78d0a78 | 2010-04-27 18:33:15 -0700 | [diff] [blame] | 542 | <version>1.4</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 543 | </dependency> |
| 544 | |
| 545 | <dependency> |
Shawn O. Pearce | 022e9cc | 2009-11-07 20:52:24 -0800 | [diff] [blame] | 546 | <groupId>commons-dbcp</groupId> |
| 547 | <artifactId>commons-dbcp</artifactId> |
Shawn O. Pearce | cd49d8f | 2010-04-27 18:37:26 -0700 | [diff] [blame] | 548 | <version>1.4</version> |
Shawn O. Pearce | 022e9cc | 2009-11-07 20:52:24 -0800 | [diff] [blame] | 549 | </dependency> |
| 550 | |
| 551 | <dependency> |
| 552 | <groupId>commons-pool</groupId> |
| 553 | <artifactId>commons-pool</artifactId> |
Shawn O. Pearce | 6aac4b0 | 2009-12-15 16:22:42 -0800 | [diff] [blame] | 554 | <version>1.5.4</version> |
Shawn O. Pearce | 022e9cc | 2009-11-07 20:52:24 -0800 | [diff] [blame] | 555 | </dependency> |
| 556 | |
| 557 | <dependency> |
Shawn O. Pearce | 993ddfb | 2010-06-23 14:39:19 -0300 | [diff] [blame] | 558 | <groupId>commons-lang</groupId> |
| 559 | <artifactId>commons-lang</artifactId> |
| 560 | <version>2.5</version> |
| 561 | </dependency> |
| 562 | |
| 563 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 564 | <groupId>eu.medsea.mimeutil</groupId> |
| 565 | <artifactId>mime-util</artifactId> |
Shawn O. Pearce | f9ae35d | 2010-02-08 11:05:28 -0800 | [diff] [blame] | 566 | <version>2.1.3</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 567 | <exclusions> |
| 568 | <exclusion> |
| 569 | <groupId>org.slf4j</groupId> |
| 570 | <artifactId>slf4j-log4j12</artifactId> |
| 571 | </exclusion> |
| 572 | <exclusion> |
| 573 | <groupId>log4j</groupId> |
| 574 | <artifactId>log4j</artifactId> |
| 575 | </exclusion> |
| 576 | </exclusions> |
| 577 | </dependency> |
| 578 | |
| 579 | <dependency> |
| 580 | <groupId>org.antlr</groupId> |
| 581 | <artifactId>antlr</artifactId> |
| 582 | <version>3.1.1</version> |
| 583 | <exclusions> |
| 584 | <exclusion> |
| 585 | <groupId>org.antlr</groupId> |
| 586 | <artifactId>stringtemplate</artifactId> |
| 587 | </exclusion> |
| 588 | <exclusion> |
| 589 | <groupId>antlr</groupId> |
| 590 | <artifactId>antlr</artifactId> |
| 591 | </exclusion> |
| 592 | </exclusions> |
| 593 | </dependency> |
| 594 | |
| 595 | <dependency> |
| 596 | <groupId>bouncycastle</groupId> |
| 597 | <artifactId>bcpg-jdk15</artifactId> |
| 598 | <version>140</version> |
| 599 | </dependency> |
| 600 | |
| 601 | <dependency> |
| 602 | <groupId>org.slf4j</groupId> |
| 603 | <artifactId>slf4j-api</artifactId> |
| 604 | <version>${slf4jVersion}</version> |
| 605 | </dependency> |
| 606 | |
| 607 | <dependency> |
| 608 | <groupId>org.slf4j</groupId> |
| 609 | <artifactId>slf4j-log4j12</artifactId> |
| 610 | <version>${slf4jVersion}</version> |
| 611 | </dependency> |
| 612 | |
| 613 | <dependency> |
| 614 | <groupId>log4j</groupId> |
| 615 | <artifactId>log4j</artifactId> |
Anatol Pomazau | 8cb68dc | 2010-07-09 10:52:40 -0700 | [diff] [blame] | 616 | <version>1.2.16</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 617 | <exclusions> |
| 618 | <exclusion> |
| 619 | <groupId>javax.mail</groupId> |
| 620 | <artifactId>mail</artifactId> |
| 621 | </exclusion> |
| 622 | <exclusion> |
| 623 | <groupId>javax.jms</groupId> |
| 624 | <artifactId>jms</artifactId> |
| 625 | </exclusion> |
| 626 | <exclusion> |
| 627 | <groupId>com.sun.jdmk</groupId> |
| 628 | <artifactId>jmxtools</artifactId> |
| 629 | </exclusion> |
| 630 | <exclusion> |
| 631 | <groupId>com.sun.jmx</groupId> |
| 632 | <artifactId>jmxri</artifactId> |
| 633 | </exclusion> |
| 634 | </exclusions> |
| 635 | </dependency> |
| 636 | |
| 637 | <dependency> |
Shawn O. Pearce | eaab2f3 | 2009-11-17 11:05:11 -0800 | [diff] [blame] | 638 | <groupId>org.eclipse.jgit</groupId> |
| 639 | <artifactId>org.eclipse.jgit</artifactId> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 640 | <version>${jgitVersion}</version> |
| 641 | </dependency> |
| 642 | <dependency> |
Shawn O. Pearce | eaab2f3 | 2009-11-17 11:05:11 -0800 | [diff] [blame] | 643 | <groupId>org.eclipse.jgit</groupId> |
| 644 | <artifactId>org.eclipse.jgit</artifactId> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 645 | <version>${jgitVersion}</version> |
| 646 | <classifier>sources</classifier> |
| 647 | </dependency> |
| 648 | |
| 649 | <dependency> |
Shawn O. Pearce | eaab2f3 | 2009-11-17 11:05:11 -0800 | [diff] [blame] | 650 | <groupId>org.eclipse.jgit</groupId> |
| 651 | <artifactId>org.eclipse.jgit.junit</artifactId> |
| 652 | <version>${jgitVersion}</version> |
| 653 | <scope>test</scope> |
| 654 | <exclusions> |
| 655 | <exclusion> |
| 656 | <groupId>org.eclipse.jgit</groupId> |
| 657 | <artifactId>org.eclipse.jgit</artifactId> |
| 658 | </exclusion> |
| 659 | </exclusions> |
| 660 | </dependency> |
| 661 | |
| 662 | <dependency> |
Shawn O. Pearce | db5fb94 | 2010-01-14 18:21:18 -0800 | [diff] [blame] | 663 | <groupId>org.eclipse.jgit</groupId> |
| 664 | <artifactId>org.eclipse.jgit.http.server</artifactId> |
| 665 | <version>${jgitVersion}</version> |
| 666 | </dependency> |
| 667 | |
| 668 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 669 | <groupId>junit</groupId> |
| 670 | <artifactId>junit</artifactId> |
Anatol Pomazau | e530b5b | 2010-07-09 11:00:59 -0700 | [diff] [blame] | 671 | <version>4.8.1</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 672 | </dependency> |
| 673 | |
| 674 | <dependency> |
| 675 | <groupId>com.h2database</groupId> |
| 676 | <artifactId>h2</artifactId> |
Shawn O. Pearce | ecbd9ed | 2010-04-27 18:12:54 -0700 | [diff] [blame] | 677 | <version>1.2.134</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 678 | </dependency> |
| 679 | |
| 680 | <dependency> |
Shawn O. Pearce | 99cdf55 | 2009-12-29 17:27:46 -0800 | [diff] [blame] | 681 | <groupId>postgresql</groupId> |
| 682 | <artifactId>postgresql</artifactId> |
| 683 | <version>8.4-701.jdbc4</version> |
Shawn O. Pearce | 022e9cc | 2009-11-07 20:52:24 -0800 | [diff] [blame] | 684 | </dependency> |
| 685 | |
| 686 | <dependency> |
Shawn O. Pearce | fa2486a | 2009-11-11 14:51:30 -0800 | [diff] [blame] | 687 | <groupId>org.eclipse.jetty</groupId> |
| 688 | <artifactId>jetty-servlet</artifactId> |
| 689 | <version>${jettyVersion}</version> |
Shawn O. Pearce | 49b9d0ef | 2010-02-23 09:06:22 -0800 | [diff] [blame] | 690 | <exclusions> |
| 691 | <exclusion> |
| 692 | <!-- use Apache javax.servlet not CDDL --> |
| 693 | <groupId>javax.servlet</groupId> |
| 694 | <artifactId>servlet-api</artifactId> |
| 695 | </exclusion> |
| 696 | </exclusions> |
Shawn O. Pearce | fa2486a | 2009-11-11 14:51:30 -0800 | [diff] [blame] | 697 | </dependency> |
| 698 | |
| 699 | <dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 700 | <groupId>org.easymock</groupId> |
| 701 | <artifactId>easymock</artifactId> |
Anatol Pomazau | 9e6445b | 2010-07-09 10:47:20 -0700 | [diff] [blame] | 702 | <version>3.0</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 703 | </dependency> |
| 704 | |
| 705 | <dependency> |
Shawn O. Pearce | 49b9d0ef | 2010-02-23 09:06:22 -0800 | [diff] [blame] | 706 | <groupId>org.apache.tomcat</groupId> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 707 | <artifactId>servlet-api</artifactId> |
Shawn O. Pearce | 49b9d0ef | 2010-02-23 09:06:22 -0800 | [diff] [blame] | 708 | <version>6.0.24</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 709 | </dependency> |
| 710 | |
| 711 | <dependency> |
| 712 | <groupId>com.google.gwt</groupId> |
| 713 | <artifactId>gwt-servlet</artifactId> |
| 714 | <version>${gwtVersion}</version> |
| 715 | </dependency> |
| 716 | |
| 717 | <dependency> |
| 718 | <groupId>com.google.gwt</groupId> |
| 719 | <artifactId>gwt-user</artifactId> |
| 720 | <version>${gwtVersion}</version> |
| 721 | </dependency> |
| 722 | |
| 723 | <dependency> |
| 724 | <groupId>com.google.gwt</groupId> |
| 725 | <artifactId>gwt-dev</artifactId> |
| 726 | <version>${gwtVersion}</version> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 727 | </dependency> |
Nico Sallembien | ee3e737 | 2010-01-25 15:50:55 -0800 | [diff] [blame] | 728 | |
| 729 | <dependency> |
| 730 | <groupId>com.google.code.findbugs</groupId> |
| 731 | <artifactId>jsr305</artifactId> |
| 732 | <version>1.3.9</version> |
| 733 | </dependency> |
Shawn O. Pearce | 8db22c8 | 2010-01-30 16:12:29 -0800 | [diff] [blame] | 734 | |
| 735 | <dependency> |
Shawn O. Pearce | 8db22c8 | 2010-01-30 16:12:29 -0800 | [diff] [blame] | 736 | <groupId>com.google.gerrit</groupId> |
| 737 | <artifactId>juniversalchardet</artifactId> |
| 738 | <version>1.0.3</version> |
| 739 | </dependency> |
Shawn O. Pearce | 993ddfb | 2010-06-23 14:39:19 -0300 | [diff] [blame] | 740 | |
| 741 | <dependency> |
| 742 | <groupId>dk.brics.automaton</groupId> |
| 743 | <artifactId>automaton</artifactId> |
| 744 | <version>1.11.2</version> |
| 745 | </dependency> |
Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 746 | </dependencies> |
| 747 | </dependencyManagement> |
| 748 | |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 749 | <repositories> |
| 750 | <repository> |
Shawn O. Pearce | b48c195 | 2009-02-23 12:11:58 -0800 | [diff] [blame] | 751 | <id>jgit-repository</id> |
Shawn O. Pearce | c243c8a | 2010-03-29 17:28:02 -0700 | [diff] [blame] | 752 | <url>http://download.eclipse.org/jgit/maven</url> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 753 | </repository> |
| 754 | |
| 755 | <repository> |
Shawn O. Pearce | 40eb8bf | 2009-01-26 07:31:46 -0800 | [diff] [blame] | 756 | <id>gerrit-maven-repository</id> |
| 757 | <url>http://gerrit.googlecode.com/svn/mavenrepo/</url> |
| 758 | </repository> |
Shawn O. Pearce | 403aaed | 2009-11-05 12:38:38 -0800 | [diff] [blame] | 759 | |
| 760 | <repository> |
Shawn O. Pearce | 255658e | 2009-12-27 14:58:07 -0800 | [diff] [blame] | 761 | <id>gerrit-snapshot-repository</id> |
| 762 | <url>http://gerrit.googlecode.com/svn/mavenrepo/snapshots/</url> |
| 763 | </repository> |
| 764 | |
| 765 | <repository> |
Shawn O. Pearce | 403aaed | 2009-11-05 12:38:38 -0800 | [diff] [blame] | 766 | <id>java.net-repository</id> |
| 767 | <url>http://download.java.net/maven/2/</url> |
| 768 | </repository> |
Shawn O. Pearce | 255658e | 2009-12-27 14:58:07 -0800 | [diff] [blame] | 769 | |
| 770 | <repository> |
| 771 | <id>gson</id> |
| 772 | <url>http://google-gson.googlecode.com/svn/mavenrepo/</url> |
| 773 | </repository> |
| 774 | |
| 775 | <repository> |
| 776 | <id>objectweb-repository</id> |
| 777 | <url>http://maven.objectweb.org/maven2/</url> |
| 778 | </repository> |
Shawn O. Pearce | 993ddfb | 2010-06-23 14:39:19 -0300 | [diff] [blame] | 779 | |
| 780 | <repository> |
| 781 | <id>clojars-repo</id> |
| 782 | <url>http://clojars.org/repo</url> |
| 783 | </repository> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 784 | </repositories> |
Shawn O. Pearce | f14a1de | 2008-12-20 17:48:48 -0800 | [diff] [blame] | 785 | </project> |