/
githubmirror
/
ydb-java-dialects
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-dialects
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
spring-ydb-retry/pom.xml
306 строк
11 KB
Kirill Kurdyukov
dev: prepare spring-ydb-retry 0.10.1 release (#231)
14 июл 2026, 21:53
Не верифицирован
14 июл 2026, 21:53
1992426
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>tech.ydb</groupId> <artifactId>spring-ydb-retry</artifactId> <version>0.10.1</version> <packaging>jar</packaging> <name>Spring YDB Retry</name> <description>Spring retry module for YDB</description> <url>https://github.com/ydb-platform/ydb-java-dialects</url> <developers> <developer> <name>Ekaterina Isaeva</name> <email>ikaterina0909@gmail.com</email> <organization>YDB</organization> <organizationUrl>https://ydb.tech/</organizationUrl> </developer> <developer> <name>Kirill Kurdyukov</name> <email>kurdyukov-kir@ydb.tech</email> <organization>YDB</organization> <organizationUrl>https://ydb.tech/</organizationUrl> </developer> </developers> <scm> <url>https://github.com/ydb-platform/ydb-java-dialects</url> <connection>scm:git:https://github.com/ydb-platform/ydb-java-dialects.git</connection> <developerConnection>scm:git:https://github.com/ydb-platform/ydb-java-dialects.git</developerConnection> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <properties> <maven.compiler.release>17</maven.compiler.release> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <java.version>17</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring.version>6.2.0</spring.version> <spring-boot.version>3.4.0</spring-boot.version> <ydb-jdbc.version>2.3.22</ydb-jdbc.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>tech.ydb.jdbc</groupId> <artifactId>ydb-jdbc-driver</artifactId> <version>${ydb-jdbc.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>tech.ydb.jdbc</groupId> <artifactId>ydb-jdbc-driver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>tech.ydb.dialects</groupId> <artifactId>spring-data-jdbc-ydb</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.15.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jdbc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>tech.ydb.dialects</groupId> <artifactId>flyway-ydb-dialect</artifactId> <version>1.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>tech.ydb.test</groupId> <artifactId>ydb-junit5-support</artifactId> <version>2.3.22</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <source>17</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>tech.ydb.spring.retry</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <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.2</version> <configuration> <properties> <configurationParameters> junit.jupiter.execution.parallel.enabled = true junit.jupiter.execution.parallel.mode.default = concurrent junit.jupiter.execution.parallel.mode.classes.default = concurrent </configurationParameters> </properties> <environmentVariables> <TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE> </environmentVariables> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>spring-boot-minimal</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <spring-boot.version>3.4.0</spring-boot.version> </properties> </profile> <profile> <id>spring-boot3</id> <properties> <spring-boot.version>3.5.7</spring-boot.version> </properties> </profile> <profile> <id>spring-boot4</id> <properties> <spring-boot.version>4.0.0</spring-boot.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-flyway</artifactId> <scope>test</scope> </dependency> </dependencies> </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.7</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>