aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-06-17 22:16:05 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2013-06-17 22:17:01 +0200
commit679442ce184e6e39d34e45b6915d0b645546e980 (patch)
treeee62e125ecb366204f9fcf1e94de5ef611ec6576 /pom.xml
parent7f223beb5157d2baf1be643943c18cd86caee6ba (diff)
downloadsonarqube-679442ce184e6e39d34e45b6915d0b645546e980.tar.gz
sonarqube-679442ce184e6e39d34e45b6915d0b645546e980.zip
SONAR-4157 downgrade to jetty 7.6 for compatibility with tomcat 6 (servlet 2.5)
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml12
1 files changed, 9 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index f7aa898a364..1ca2d8cf6e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -74,7 +74,7 @@
<sonarJava.version>1.3-SNAPSHOT</sonarJava.version>
<sonarGwt.version>3.3.1</sonarGwt.version>
<h2.version>1.3.167</h2.version>
- <jetty.version>8.1.9.v20130131</jetty.version>
+ <jetty.version>7.6.11.v20130520</jetty.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.min.version>2.2.1</maven.min.version>
<jdk.min.version>1.6</jdk.min.version>
@@ -967,13 +967,19 @@
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.0.1</version>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.jetty.orbit</groupId>
+ <artifactId>javax.servlet</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>