summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2016-06-14 11:27:10 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2016-06-15 11:08:36 +0200
commit6f49a9466aaadfad0073c571e023436a9f96bc73 (patch)
treefdca4e209802d138f823c10f2bdffaddc90648d9 /pom.xml
parent59a1bedcce44674f3bac75af59ddcd5cb985e303 (diff)
downloadsonarqube-6f49a9466aaadfad0073c571e023436a9f96bc73.tar.gz
sonarqube-6f49a9466aaadfad0073c571e023436a9f96bc73.zip
SONAR-7713 Use JWT session
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index c7bc0bce6d9..794d325883a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,6 +68,7 @@
<elasticsearch.version>2.3.3</elasticsearch.version>
<orchestrator.version>3.11</orchestrator.version>
<okhttp.version>2.6.0</okhttp.version>
+ <jackson.version>2.6.6</jackson.version>
<protobuf.version>3.0.0-beta-2</protobuf.version>
<protobuf.compiler>${settings.localRepository}/com/google/protobuf/protoc/${protobuf.version}/protoc-${protobuf.version}-${os.detected.classifier}.exe</protobuf.compiler>
@@ -644,6 +645,26 @@
</exclusions>
</dependency>
<dependency>
+ <groupId>io.jsonwebtoken</groupId>
+ <artifactId>jjwt</artifactId>
+ <version>0.6.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.7</version>