blob: 26642e018a02c16a26f918de022574afee33aaaa [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>
57 <artifactId>org.eclipse.jgit.junit</artifactId>
58 <scope>test</scope>
59 <exclusions>
60 <exclusion>
61 <groupId>org.eclipse.jgit</groupId>
62 <artifactId>org.eclipse.jgit</artifactId>
63 </exclusion>
64 </exclusions>
65 </dependency>
66
67 <dependency>
Dave Borowitz9fea5072013-06-18 23:44:50 -070068 <groupId>org.eclipse.jetty.orbit</groupId>
69 <artifactId>javax.servlet</artifactId>
70 <!-- Gitiles is designed to compile and run against Servlet API 2.5 as
71 well as 3.0; default to the earlier version. -->
72 <version>2.5.0.v201103041518</version>
Dave Borowitz9de65952012-08-13 16:09:45 -070073 <scope>provided</scope>
74 </dependency>
75
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 <scope>test</scope>
80 </dependency>
81
82 <dependency>
83 <groupId>org.slf4j</groupId>
84 <artifactId>slf4j-api</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>joda-time</groupId>
89 <artifactId>joda-time</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>com.google.code.gson</groupId>
94 <artifactId>gson</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>org.apache.commons</groupId>
99 <artifactId>commons-lang3</artifactId>
100 </dependency>
101 </dependencies>
102
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-source-plugin</artifactId>
108 <executions>
109 <execution>
110 <goals>
111 <goal>jar</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116 </plugins>
117 </build>
118</project>