/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
auth-providers/oauth2-provider/pom.xml
108 строк
3 KB
Alexandr Gorshenin
Next snapshot version v2.4.9
20 июл 2026, 14:11
Не верифицирован
20 июл 2026, 14:11
d0d6ac1
Код
Авторство
О чём код?
<?xml version="1.0"?> <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>tech.ydb</groupId> <artifactId>ydb-sdk-parent</artifactId> <version>2.4.9-SNAPSHOT</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>tech.ydb.auth</groupId> <artifactId>ydb-oauth2-provider</artifactId> <name>OAuth2 Authentication provider</name> <description>Provider for OAuth2 Token Exchange authentication</description> <dependencies> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-core</artifactId> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-api</artifactId> <version>0.10.8</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-impl</artifactId> <version>0.10.8</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-jackson</artifactId> <version>0.10.8</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.14</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-netty-no-dependencies</artifactId> <version>5.15.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.84</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>1.84</version> </dependency> </dependencies> <profiles> <profile> <id>jdk8-build</id> <activation> <jdk>1.8</jdk> </activation> <properties> <!-- Downgrade Mockito to 4 version --> <mockito.version>4.11.0</mockito.version> </properties> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> </project>