diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-05-08 09:14:29 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-05-08 10:23:02 +0200 |
commit | 9e46b4bb203a60742f0cb58cd621a58496b7ed33 (patch) | |
tree | ce4a6aac43db33c25c4bf48b6c22a9f63e88e42c /sonar-plugin-api/pom.xml | |
parent | bd0abcb3f754f4c123f9ce3145e2cf814210b91e (diff) | |
download | sonarqube-9e46b4bb203a60742f0cb58cd621a58496b7ed33.tar.gz sonarqube-9e46b4bb203a60742f0cb58cd621a58496b7ed33.zip |
SONAR-2950 Single Sign On with external authentication mechanism
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r-- | sonar-plugin-api/pom.xml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index 22a6a4fdef2..93e5a4a7522 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.sonar</groupId> @@ -131,6 +132,12 @@ <groupId>xalan</groupId> <artifactId>xalan</artifactId> </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> + <optional>true</optional> + </dependency> <!-- unit tests --> <dependency> @@ -169,6 +176,12 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.easytesting</groupId> + <artifactId>fest-assert</artifactId> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-servlet-tester</artifactId> <scope>test</scope> |