/
githubmirror
/
ydb-java-dialects
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-dialects
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
hibernate-dialect/pom.xml
253 строки
9 KB
Kirill Kurdyukov
change version to v1.7.1-SNAPSHOT
30 июл 2026, 15:13
30 июл 2026, 15:13
7830a43
Код
Авторство
О чём код?
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>tech.ydb.dialects</groupId> <artifactId>hibernate-ydb-dialect</artifactId> <version>1.7.1-SNAPSHOT</version> <packaging>jar</packaging> <name>Hibernate YDB Dialect</name> <description>Support Hibernate 6 YDB (YQL) Dialect</description> <url>https://github.com/ydb-platform/ydb-java-dialects</url> <developers> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>17</maven.compiler.release> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <hibernate.version>6.2.7.Final</hibernate.version> <junit5.version>5.9.3</junit5.version> <log4j2.version>2.17.2</log4j2.version> <lombok.version>1.18.38</lombok.version> <ydb.sdk.version>2.3.13</ydb.sdk.version> <ydb.jdbc.version>2.3.18</ydb.jdbc.version> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencyManagement> <dependencies> <dependency> <groupId>tech.ydb</groupId> <artifactId>ydb-sdk-bom</artifactId> <version>${ydb.sdk.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>tech.ydb.test</groupId> <artifactId>ydb-junit5-support</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>tech.ydb.jdbc</groupId> <artifactId>ydb-jdbc-driver</artifactId> <version>${ydb.jdbc.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>${maven.compiler.release}</release> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <source>${maven.compiler.source}</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-source-plugin</artifactId> <version>3.2.1</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.1.0</version> <configuration> <environmentVariables> <TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE> <YDB_DOCKER_IMAGE>ydbplatform/local-ydb:trunk</YDB_DOCKER_IMAGE> </environmentVariables> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>hibernate6</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <hibernate.version>6.2.7.Final</hibernate.version> <maven.compiler.release>11</maven.compiler.release> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> </properties> </profile> <profile> <id>hibernate7</id> <properties> <hibernate.version>7.1.4.Final</hibernate.version> <maven.compiler.release>17</maven.compiler.release> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> </properties> </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>