diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-06-14 11:27:10 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-06-15 11:08:36 +0200 |
commit | 6f49a9466aaadfad0073c571e023436a9f96bc73 (patch) | |
tree | fdca4e209802d138f823c10f2bdffaddc90648d9 /pom.xml | |
parent | 59a1bedcce44674f3bac75af59ddcd5cb985e303 (diff) | |
download | sonarqube-6f49a9466aaadfad0073c571e023436a9f96bc73.tar.gz sonarqube-6f49a9466aaadfad0073c571e023436a9f96bc73.zip |
SONAR-7713 Use JWT session
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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> |