|
8 | 8 | <artifactId>spring-data-ydb-dialect</artifactId>
|
9 | 9 | <version>0.9.1-SNAPSHOT</version>
|
10 | 10 |
|
11 |
| - <name>Spring Data YDB Dialect</name> |
| 11 | + <name>Spring Data JDBC YDB Dialect</name> |
12 | 12 | <description>Support Spring Data JDBC YDB (YQL) Dialect</description>
|
13 | 13 | <url>https://github.com/ydb-platform/ydb-java-dialects</url>
|
14 | 14 |
|
| 15 | + <packaging>jar</packaging> |
| 16 | + |
15 | 17 | <developers>
|
16 | 18 | <developer>
|
17 | 19 | <name>Madiyar Nurgazin</name>
|
18 | 20 |
|
19 | 21 | <organization>YDB</organization>
|
20 | 22 | <organizationUrl>https://ydb.tech/</organizationUrl>
|
21 | 23 | </developer>
|
| 24 | + <developer> |
| 25 | + <name>Kirill Kurdyukov</name> |
| 26 | + |
| 27 | + <organization>YDB</organization> |
| 28 | + <organizationUrl>https://ydb.tech/</organizationUrl> |
| 29 | + </developer> |
22 | 30 | </developers>
|
23 | 31 |
|
| 32 | + <scm> |
| 33 | + <url>https://github.com/ydb-platform/ydb-java-dialects</url> |
| 34 | + <connection>scm:git:https://github.com/ydb-platform/ydb-java-dialects.git</connection> |
| 35 | + <developerConnection>scm:git:https://github.com/ydb-platform/ydb-java-dialects.git</developerConnection> |
| 36 | + </scm> |
| 37 | + |
| 38 | + <licenses> |
| 39 | + <license> |
| 40 | + <name>Apache License, Version 2.0</name> |
| 41 | + <url>https://www.apache.org/licenses/LICENSE-2.0</url> |
| 42 | + </license> |
| 43 | + </licenses> |
| 44 | + |
24 | 45 | <properties>
|
25 | 46 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
26 | 47 |
|
27 | 48 | <maven.compiler.release>17</maven.compiler.release>
|
28 |
| - |
29 | 49 | <maven.compiler.target>17</maven.compiler.target>
|
30 | 50 | <maven.compiler.source>17</maven.compiler.source>
|
31 | 51 |
|
32 |
| - <springdata.jdbc.version>3.2.4</springdata.jdbc.version> |
33 |
| - |
34 | 52 | <junit5.version>5.10.2</junit5.version>
|
35 | 53 | <lombok.version>1.18.30</lombok.version>
|
36 |
| - <spring.boot.version>3.2.3</spring.boot.version> |
| 54 | + <spring.version>3.2.1</spring.version> |
37 | 55 | <liquibase.version>4.24.0</liquibase.version>
|
38 | 56 |
|
39 |
| - <ydb.sdk.version>2.2.6</ydb.sdk.version> |
40 |
| - <ydb.jdbc.version>2.1.5</ydb.jdbc.version> |
| 57 | + <ydb.sdk.version>2.2.9</ydb.sdk.version> |
| 58 | + <ydb.jdbc.version>2.2.3</ydb.jdbc.version> |
41 | 59 | <ydb.liquibase.version>0.9.7</ydb.liquibase.version>
|
42 | 60 | </properties>
|
43 | 61 |
|
|
50 | 68 | <type>pom</type>
|
51 | 69 | <scope>import</scope>
|
52 | 70 | </dependency>
|
| 71 | + <dependency> |
| 72 | + <groupId>org.springframework.boot</groupId> |
| 73 | + <artifactId>spring-boot-dependencies</artifactId> |
| 74 | + <version>${spring.version}</version> |
| 75 | + <scope>import</scope> |
| 76 | + <type>pom</type> |
| 77 | + </dependency> |
53 | 78 | </dependencies>
|
54 | 79 | </dependencyManagement>
|
55 | 80 |
|
56 | 81 | <dependencies>
|
57 | 82 | <dependency>
|
58 | 83 | <groupId>org.springframework.data</groupId>
|
59 | 84 | <artifactId>spring-data-jdbc</artifactId>
|
60 |
| - <version>${springdata.jdbc.version}</version> |
61 | 85 | <scope>provided</scope>
|
62 | 86 | </dependency>
|
63 | 87 | <dependency>
|
64 | 88 | <groupId>tech.ydb.jdbc</groupId>
|
65 |
| - <artifactId>ydb-jdbc-driver-shaded</artifactId> |
| 89 | + <artifactId>ydb-jdbc-driver</artifactId> |
66 | 90 | <version>${ydb.jdbc.version}</version>
|
| 91 | + <scope>provided</scope> |
67 | 92 | </dependency>
|
| 93 | + |
68 | 94 | <dependency>
|
69 | 95 | <groupId>tech.ydb.test</groupId>
|
70 | 96 | <artifactId>ydb-junit5-support</artifactId>
|
|
73 | 99 | <dependency>
|
74 | 100 | <groupId>org.junit.jupiter</groupId>
|
75 | 101 | <artifactId>junit-jupiter-api</artifactId>
|
76 |
| - <version>${junit5.version}</version> |
77 | 102 | <scope>test</scope>
|
78 | 103 | </dependency>
|
79 | 104 | <dependency>
|
|
85 | 110 | <dependency>
|
86 | 111 | <groupId>org.springframework.boot</groupId>
|
87 | 112 | <artifactId>spring-boot-starter-test</artifactId>
|
88 |
| - <version>${spring.boot.version}</version> |
89 | 113 | <scope>test</scope>
|
90 | 114 | </dependency>
|
91 | 115 | <dependency>
|
92 | 116 | <groupId>org.springframework.boot</groupId>
|
93 | 117 | <artifactId>spring-boot-starter-jdbc</artifactId>
|
94 |
| - <version>${spring.boot.version}</version> |
95 | 118 | <scope>test</scope>
|
96 | 119 | </dependency>
|
97 | 120 | <dependency>
|
|
107 | 130 | <scope>test</scope>
|
108 | 131 | </dependency>
|
109 | 132 | </dependencies>
|
| 133 | + <build> |
| 134 | + <plugins> |
| 135 | + <plugin> |
| 136 | + <groupId>org.apache.maven.plugins</groupId> |
| 137 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 138 | + <version>3.5.0</version> |
| 139 | + <configuration> |
| 140 | + <source>17</source> |
| 141 | + </configuration> |
| 142 | + <executions> |
| 143 | + <execution> |
| 144 | + <id>attach-javadocs</id> |
| 145 | + <goals> |
| 146 | + <goal>jar</goal> |
| 147 | + </goals> |
| 148 | + </execution> |
| 149 | + </executions> |
| 150 | + </plugin> |
| 151 | + <plugin> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-source-plugin</artifactId> |
| 154 | + <version>3.2.1</version> |
| 155 | + <executions> |
| 156 | + <execution> |
| 157 | + <id>attach-sources</id> |
| 158 | + <goals> |
| 159 | + <goal>jar-no-fork</goal> |
| 160 | + </goals> |
| 161 | + </execution> |
| 162 | + </executions> |
| 163 | + </plugin> |
| 164 | + <plugin> |
| 165 | + <groupId>org.apache.maven.plugins</groupId> |
| 166 | + <artifactId>maven-surefire-plugin</artifactId> |
| 167 | + <version>3.1.0</version> |
| 168 | + <configuration> |
| 169 | + <environmentVariables> |
| 170 | + <TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE> |
| 171 | + </environmentVariables> |
| 172 | + </configuration> |
| 173 | + </plugin> |
| 174 | + </plugins> |
| 175 | + </build> |
| 176 | + <profiles> |
| 177 | + <profile> |
| 178 | + <id>ossrh-s01</id> |
| 179 | + <activation> |
| 180 | + <activeByDefault>false</activeByDefault> |
| 181 | + </activation> |
| 182 | + <build> |
| 183 | + <plugins> |
| 184 | + <plugin> |
| 185 | + <groupId>org.apache.maven.plugins</groupId> |
| 186 | + <artifactId>maven-gpg-plugin</artifactId> |
| 187 | + <version>1.6</version> |
| 188 | + <executions> |
| 189 | + <execution> |
| 190 | + <id>sign-artifacts</id> |
| 191 | + <phase>verify</phase> |
| 192 | + <goals> |
| 193 | + <goal>sign</goal> |
| 194 | + </goals> |
| 195 | + </execution> |
| 196 | + </executions> |
| 197 | + <configuration> |
| 198 | + <gpgArguments> |
| 199 | + <arg>--pinentry-mode</arg> |
| 200 | + <arg>loopback</arg> |
| 201 | + </gpgArguments> |
| 202 | + </configuration> |
| 203 | + </plugin> |
| 204 | + <plugin> |
| 205 | + <groupId>org.sonatype.plugins</groupId> |
| 206 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 207 | + <version>1.6.8</version> |
| 208 | + <extensions>true</extensions> |
| 209 | + <configuration> |
| 210 | + <serverId>ossrh-s01</serverId> |
| 211 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 212 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 213 | + </configuration> |
| 214 | + </plugin> |
| 215 | + </plugins> |
| 216 | + </build> |
| 217 | + </profile> |
| 218 | + </profiles> |
110 | 219 | </project>
|
0 commit comments