/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.3.31
table/pom.xml
59 строк
2 KB
Alexandr Gorshenin
New release version v2.3.31
16 фев 2026, 11:51
Не верифицирован
16 фев 2026, 11:51
92fac4b
Код
Авторство
О чём код?
<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.3.31</version> </parent> <artifactId>ydb-sdk-table</artifactId> <name>Table client implementation</name> <description>Table client implementation</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-core</artifactId> </dependency> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-common</artifactId> </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-slf4j-impl</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <environmentVariables> <TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE> <YDB_DOCKER_IMAGE>ydbplatform/local-ydb:trunk</YDB_DOCKER_IMAGE> </environmentVariables> </configuration> </plugin> </plugins> </build> </project>