Skip to content

Commit efe36ec

Browse files
authored
Merge pull request #2482 from ClickHouse/fix_release
fix release
2 parents c999bfc + e4f713e commit efe36ec

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

jdbc-v2/src/main/java/com/clickhouse/jdbc/StatementImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ protected int executeUpdateImpl(String sql, QuerySettings settings) throws SQLEx
181181
lastStatementSql = parseJdbcEscapeSyntax(sql);
182182
LOG.trace("SQL Query: {}", lastStatementSql);
183183
int updateCount = 0;
184-
System.out.println(lastStatementSql);
185184
try (QueryResponse response = queryTimeout == 0 ? connection.client.query(lastStatementSql, mergedSettings).get()
186185
: connection.client.query(lastStatementSql, mergedSettings).get(queryTimeout, TimeUnit.SECONDS)) {
187186
currentResultSet = null;

pom.xml

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</distributionManagement>
8181

8282
<properties>
83-
<revision>0.9.1-SNAPSHOT</revision>
83+
<revision>0.9.0-SNAPSHOT</revision>
8484
<project.current.year>2025</project.current.year>
8585
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8686
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -146,6 +146,7 @@
146146
<resource-plugin.version>3.3.1</resource-plugin.version>
147147
<jmh.version>1.37</jmh.version>
148148
<guava.version>33.4.6-jre</guava.version>
149+
<sonar.publish-pluing.version>0.8.0</sonar.publish-pluing.version>
149150

150151
<minTargetJdk>17</minTargetJdk>
151152
<minSourceJdk>17</minSourceJdk>
@@ -1027,22 +1028,31 @@
10271028
</configuration>
10281029
</plugin>
10291030
<plugin>
1030-
<groupId>org.sonatype.plugins</groupId>
1031-
<artifactId>nexus-staging-maven-plugin</artifactId>
1032-
<executions>
1033-
<execution>
1034-
<id>default-deploy</id>
1035-
<phase>deploy</phase>
1036-
<goals>
1037-
<goal>deploy</goal>
1038-
</goals>
1039-
</execution>
1040-
</executions>
1031+
<groupId>org.sonatype.central</groupId>
1032+
<artifactId>central-publishing-maven-plugin</artifactId>
1033+
<version>0.8.0</version>
1034+
<extensions>true</extensions>
10411035
<configuration>
1042-
<serverId>ossrh</serverId>
1043-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
1036+
<publishingServerId>central</publishingServerId>
10441037
</configuration>
10451038
</plugin>
1039+
<!-- <plugin>-->
1040+
<!-- <groupId>org.sonatype.plugins</groupId>-->
1041+
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
1042+
<!-- <executions>-->
1043+
<!-- <execution>-->
1044+
<!-- <id>default-deploy</id>-->
1045+
<!-- <phase>deploy</phase>-->
1046+
<!-- <goals>-->
1047+
<!-- <goal>deploy</goal>-->
1048+
<!-- </goals>-->
1049+
<!-- </execution>-->
1050+
<!-- </executions>-->
1051+
<!-- <configuration>-->
1052+
<!-- <serverId>ossrh</serverId>-->
1053+
<!-- <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>-->
1054+
<!-- </configuration>-->
1055+
<!-- </plugin>-->
10461056
</plugins>
10471057
</build>
10481058
</profile>

0 commit comments

Comments
 (0)