/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
coordination/pom.xml
72 строки
2 KB
Alexandr Gorshenin
Next snapshot version v2.4.9
20 июл 2026, 14:11
Не верифицирован
20 июл 2026, 14:11
d0d6ac1
Код
Авторство
О чём код?
<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> </parent> <artifactId>ydb-sdk-coordination</artifactId> <name>Coordination node client implementation</name> <description>Coordination node client implementation</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-common</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>tech.ydb.test</groupId> <artifactId>ydb-junit4-support</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </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>