| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2009 The Android Open Source Project |
| 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> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>com.google.gerrit</groupId> |
| 24 | <artifactId>gerrit-parent</artifactId> |
| Shawn O. Pearce | 4e67700 | 2011-05-31 10:30:53 -0700 | [diff] [blame] | 25 | <version>2.2-SNAPSHOT</version> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>gerrit-httpd</artifactId> |
| 29 | <name>Gerrit Code Review - HTTPd</name> |
| 30 | |
| 31 | <description> |
| 32 | Servlet context for components run inside of an HTTP environment. |
| 33 | </description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| Shawn O. Pearce | 49b9d0ef | 2010-02-23 09:06:22 -0800 | [diff] [blame] | 37 | <groupId>org.apache.tomcat</groupId> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 38 | <artifactId>servlet-api</artifactId> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| Nico Sallembien | ee3e737 | 2010-01-25 15:50:55 -0800 | [diff] [blame] | 41 | |
| 42 | <dependency> |
| 43 | <groupId>com.google.code.findbugs</groupId> |
| 44 | <artifactId>jsr305</artifactId> |
| 45 | </dependency> |
| 46 | |
| Shawn O. Pearce | db5fb94 | 2010-01-14 18:21:18 -0800 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>org.eclipse.jgit</groupId> |
| 49 | <artifactId>org.eclipse.jgit.http.server</artifactId> |
| 50 | </dependency> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 51 | |
| 52 | <dependency> |
| Shawn O. Pearce | e194e7f | 2009-12-19 13:00:16 -0800 | [diff] [blame] | 53 | <groupId>org.eclipse.jgit</groupId> |
| 54 | <artifactId>org.eclipse.jgit.junit</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 58 | <groupId>com.google.gwt</groupId> |
| 59 | <artifactId>gwt-servlet</artifactId> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>eu.medsea.mimeutil</groupId> |
| 64 | <artifactId>mime-util</artifactId> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.openid4java</groupId> |
| 69 | <artifactId>openid4java-consumer</artifactId> |
| Shawn O. Pearce | 71ae872 | 2011-05-15 18:03:07 -0700 | [diff] [blame] | 70 | <type>pom</type> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>gwtjsonrpc</groupId> |
| 75 | <artifactId>gwtjsonrpc</artifactId> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>com.google.gerrit</groupId> |
| Shawn O. Pearce | 8d9fc99 | 2010-03-13 19:20:09 -0800 | [diff] [blame] | 80 | <artifactId>gerrit-launcher</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>com.google.gerrit</groupId> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 86 | <artifactId>gerrit-server</artifactId> |
| Shawn O. Pearce | d1a3f68 | 2009-12-29 17:07:01 -0800 | [diff] [blame] | 87 | <version>${project.version}</version> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 88 | </dependency> |
| Shawn O. Pearce | 8db22c8 | 2010-01-30 16:12:29 -0800 | [diff] [blame] | 89 | |
| 90 | <dependency> |
| 91 | <groupId>com.google.gerrit</groupId> |
| 92 | <artifactId>gerrit-prettify</artifactId> |
| 93 | <version>${project.version}</version> |
| 94 | </dependency> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 95 | </dependencies> |
| Shawn O. Pearce | ebf0432 | 2011-09-06 10:49:06 -0700 | [diff] [blame] | 96 | |
| 97 | <build> |
| 98 | <plugins> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-source-plugin</artifactId> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <goals> |
| 105 | <goal>jar</goal> |
| 106 | </goals> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | </plugin> |
| 110 | </plugins> |
| 111 | </build> |
| Shawn O. Pearce | 44671f5 | 2009-11-07 12:55:26 -0800 | [diff] [blame] | 112 | </project> |