blob: 4a41bb51480c0942f473791adc6c391d3f6e6410 [file] [log] [blame]
Dave Borowitz9de65952012-08-13 16:09:45 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3Copyright 2012 Google Inc. All Rights Reserved.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>com.google.gitiles</groupId>
23 <artifactId>gitiles-parent</artifactId>
24 <version>1.0-SNAPSHOT</version>
25 </parent>
26
27 <artifactId>gitiles-servlet</artifactId>
28 <name>Gitiles - Servlet</name>
29
30 <description>
31 Gitiles servlet implementation
32 </description>
33
34 <dependencies>
35 <dependency>
36 <groupId>com.google.guava</groupId>
37 <artifactId>guava</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>com.google.template</groupId>
42 <artifactId>soy</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.eclipse.jgit</groupId>
47 <artifactId>org.eclipse.jgit</artifactId>
48 </dependency>
49
50 <dependency>
51 <groupId>org.eclipse.jgit</groupId>
52 <artifactId>org.eclipse.jgit.http.server</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>org.eclipse.jgit</groupId>
Dave Borowitz6d9bc5a2013-06-19 09:12:52 -070057 <artifactId>org.eclipse.jgit.archive</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.eclipse.jgit</groupId>
Dave Borowitz9de65952012-08-13 16:09:45 -070062 <artifactId>org.eclipse.jgit.junit</artifactId>
63 <scope>test</scope>
64 <exclusions>
65 <exclusion>
66 <groupId>org.eclipse.jgit</groupId>
67 <artifactId>org.eclipse.jgit</artifactId>
68 </exclusion>
69 </exclusions>
70 </dependency>
71
72 <dependency>
Dave Borowitz9fea5072013-06-18 23:44:50 -070073 <groupId>org.eclipse.jetty.orbit</groupId>
74 <artifactId>javax.servlet</artifactId>
75 <!-- Gitiles is designed to compile and run against Servlet API 2.5 as
76 well as 3.0; default to the earlier version. -->
77 <version>2.5.0.v201103041518</version>
Dave Borowitz9de65952012-08-13 16:09:45 -070078 <scope>provided</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <scope>test</scope>
85 </dependency>
86
87 <dependency>
88 <groupId>org.slf4j</groupId>
89 <artifactId>slf4j-api</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>joda-time</groupId>
94 <artifactId>joda-time</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>com.google.code.gson</groupId>
99 <artifactId>gson</artifactId>
100 </dependency>
101
102 <dependency>
103 <groupId>org.apache.commons</groupId>
104 <artifactId>commons-lang3</artifactId>
105 </dependency>
106 </dependencies>
107
108 <build>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-source-plugin</artifactId>
113 <executions>
114 <execution>
115 <goals>
116 <goal>jar</goal>
117 </goals>
118 </execution>
119 </executions>
120 </plugin>
121 </plugins>
122 </build>
123</project>