Skip to content

Commit cee3306

Browse files
authored
Merge pull request #282 from ydb-platform/oauth_token_credentials
New module with OAuth2 provider implementation
2 parents 53fca5e + e4d7f72 commit cee3306

File tree

11 files changed

+1477
-329
lines changed

11 files changed

+1477
-329
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>tech.ydb</groupId>
7+
<artifactId>ydb-sdk-parent</artifactId>
8+
<version>2.2.3-SNAPSHOT</version>
9+
<relativePath>../../pom.xml</relativePath>
10+
</parent>
11+
12+
<groupId>tech.ydb.auth</groupId>
13+
<artifactId>ydb-oauth2-provider</artifactId>
14+
15+
<name>OAuth2 Authentication provider</name>
16+
<description>Provider for OAuth2 Token Exchange authentication</description>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>tech.ydb</groupId>
21+
<artifactId>ydb-sdk-core</artifactId>
22+
</dependency>
23+
24+
<dependency>
25+
<groupId>io.jsonwebtoken</groupId>
26+
<artifactId>jjwt-api</artifactId>
27+
<version>0.10.8</version>
28+
</dependency>
29+
30+
<dependency>
31+
<groupId>io.jsonwebtoken</groupId>
32+
<artifactId>jjwt-impl</artifactId>
33+
<version>0.10.8</version>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>io.jsonwebtoken</groupId>
38+
<artifactId>jjwt-jackson</artifactId>
39+
<version>0.10.8</version>
40+
</dependency>
41+
42+
<dependency>
43+
<groupId>org.apache.httpcomponents</groupId>
44+
<artifactId>httpclient</artifactId>
45+
<version>4.5.14</version>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
<scope>test</scope>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>org.mockito</groupId>
56+
<artifactId>mockito-inline</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>org.mock-server</groupId>
62+
<artifactId>mockserver-netty-no-dependencies</artifactId>
63+
<version>5.15.0</version>
64+
<scope>test</scope>
65+
</dependency>
66+
67+
<dependency>
68+
<groupId>org.apache.logging.log4j</groupId>
69+
<artifactId>log4j-slf4j-impl</artifactId>
70+
<scope>test</scope>
71+
</dependency>
72+
</dependencies>
73+
</project>

0 commit comments

Comments
 (0)