/
githubmirror
/
ydb-java-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.4.7
pom.xml
337 строк
13 KB
Alexandr Gorshenin
New release version v2.4.7
03 июл 2026, 17:57
Не верифицирован
03 июл 2026, 17:57
4e69d0d
Код
Авторство
О чём код?
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <packaging>pom</packaging> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-parent</artifactId> <version>2.4.7</version> <name>Java SDK for YDB</name> <description>Java SDK for YDB</description> <url>https://github.com/ydb-platform/ydb-java-sdk</url> <modules> <module>bom</module> <module>common</module> <module>core</module> <module>table</module> <module>scheme</module> <module>topic</module> <module>query</module> <module>coordination</module> <module>export</module> <module>tests/common</module> <module>tests/junit4-support</module> <module>tests/junit5-support</module> <module>auth-providers/oauth2-provider</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j.version>2.0.17</slf4j.version> <junit.version>4.13.2</junit.version> <junit5.version>5.14.2</junit5.version> <log4j2.version>2.25.3</log4j2.version> <gson.version>2.13.2</gson.version> <mockito.version>5.21.0</mockito.version> <testcontainers.version>2.0.3</testcontainers.version> <!-- last version with JDK8 compability --> <apache.arrow.version>17.0.0</apache.arrow.version> <opentelemetry.version>1.59.0</opentelemetry.version> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <url>https://github.com/ydb-platform/ydb-java-sdk</url> <connection>scm:git:https://github.com/ydb-platform/ydb-java-sdk.git</connection> <developerConnection>scm:git:https://github.com/ydb-platform/ydb-java-sdk.git</developerConnection> </scm> <developers> <developer> <name>Aleksandr Gorshenin</name> <email>alexandr268@ydb.tech</email> <organization>YDB</organization> <organizationUrl>https://ydb.tech/</organizationUrl> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <!-- Apache Arrow dependencies --> <dependency> <groupId>org.apache.arrow</groupId> <artifactId>arrow-vector</artifactId> <version>${apache.arrow.version}</version> </dependency> <dependency> <groupId>org.apache.arrow</groupId> <artifactId>arrow-compression</artifactId> <version>${apache.arrow.version}</version> </dependency> <dependency> <groupId>org.apache.arrow</groupId> <artifactId>arrow-memory-netty</artifactId> <version>${apache.arrow.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit5.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>${log4j2.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${testcontainers.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.9.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.4.0</version> <configuration> <propertiesEncoding>ISO-8859-1</propertiesEncoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.1</version> <configuration> <target>1.8</target> <source>1.8</source> <compilerArgs> <arg>-Xlint</arg> <!-- Silence warning "No processor claimed any of these annotations". One of the annotations that would trigger it is org.junit.jupiter.api.Test --> <arg>-Xlint:-processing</arg> <!-- Silence warnning "source value 8 is obsolete and will be removed in a future release" --> <arg>-Xlint:-options</arg> <!-- Silence warnning "auto-closeable resource ignored is never referenced in body of corresponding try statement" --> <arg>-Xlint:-try</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.4</version> <configuration> <environmentVariables> <TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE> </environmentVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.6.0</version> <configuration> <configLocation>config/ydb.checkstyle.xml</configLocation> <suppressionsFileExpression>config/ydb.suppressions.xml</suppressionsFileExpression> <consoleOutput>true</consoleOutput> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.12.0</version> <configuration> <source>8</source> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Code Coverage report generation --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.14</version> <executions> <execution> <id>jacoco-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>jacoco-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>jdk8-bootstrap</id> <activation> <jdk>[9,)</jdk> </activation> <properties> <argLine></argLine> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>8</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- Hides warnings of mockito and jacoco usage in tests on JDK 21+ --> <argLine>@{argLine} -XX:+EnableDynamicAgentLoading</argLine> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>with-auth-api</id> <modules> <module>auth-api</module> </modules> </profile> <profile> <id>ossrh-s01</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.10.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh-s01</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>