Skip to content

Commit a8d755d

Browse files
authored
Merge branch 'master' into codecov-flags
2 parents a0ef871 + 123c3fd commit a8d755d

File tree

4 files changed

+27
-28
lines changed

4 files changed

+27
-28
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,14 +536,14 @@ workflows:
536536
name: 'deploy snapshot'
537537
requires:
538538
- 'snapshot'
539-
context: Sonatype
539+
context: central
540540
filters:
541541
<<: *master-only
542542

543543
release:
544544
jobs:
545545
- deployRelease:
546546
name: 'release to maven central'
547-
context: Sonatype
547+
context: central
548548
filters:
549549
<<: *tags-only

.circleci/settings.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
http://maven.apache.org/xsd/settings-1.0.0.xsd">
2020
<servers>
2121
<server>
22-
<id>ossrh</id>
23-
<username>${env.SONATYPE_USER}</username>
24-
<password>${env.SONATYPE_PASSWORD}</password>
22+
<id>central</id>
23+
<username>${env.CENTRAL_TOKEN_USERNAME}</username>
24+
<password>${env.CENTRAL_TOKEN_PASSWORD}</password>
2525
</server>
2626
</servers>
2727
<profiles>
2828
<profile>
29-
<id>ossrh</id>
29+
<id>central</id>
3030
<activation>
3131
<activeByDefault>true</activeByDefault>
3232
</activation>

pom.xml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@
7777

7878
<distributionManagement>
7979
<repository>
80-
<id>ossrh</id>
81-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
80+
<id>central</id>
81+
<url>https://central.sonatype.com/api/v1/publisher/deployments/upload/</url>
8282
</repository>
8383
<snapshotRepository>
84-
<id>ossrh</id>
85-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
84+
<id>central</id>
85+
<url>https://central.sonatype.com/api/v1/publisher/deployments/upload/</url>
8686
</snapshotRepository>
8787
</distributionManagement>
8888

@@ -107,7 +107,7 @@
107107
<junit.version>5.13.4</junit.version>
108108
<ecj.version>3.42.0</ecj.version>
109109
<jdo.version>3.2.1</jdo.version>
110-
<springboot.version>3.5.3</springboot.version>
110+
<springboot.version>3.5.4</springboot.version>
111111
<spring.version>6.2.9</spring.version>
112112

113113
<!-- SQL deps -->
@@ -116,9 +116,9 @@
116116
<hsqldb.version>2.7.4</hsqldb.version>
117117
<h2.version>2.3.232</h2.version>
118118
<postgresql.version>42.7.7</postgresql.version>
119-
<oracle.version>23.8.0.25.04</oracle.version>
120-
<mysql.version>9.3.0</mysql.version>
121-
<mssql.version>13.1.0.jre8-preview</mssql.version>
119+
<oracle.version>23.9.0.25.07</oracle.version>
120+
<mysql.version>9.4.0</mysql.version>
121+
<mssql.version>13.1.1.jre8-preview</mssql.version>
122122
<cubrid.version>9.3.9.0002</cubrid.version>
123123
<sqlite.version>3.50.3.0</sqlite.version>
124124
<teradata.version>13.10.00.35</teradata.version>
@@ -128,13 +128,13 @@
128128
<r2dbc.version>1.0.0.RELEASE</r2dbc.version>
129129

130130
<!-- JPA deps -->
131-
<hibernate.version>7.0.2.Final</hibernate.version>
131+
<hibernate.version>7.0.9.Final</hibernate.version>
132132
<hibernate.validator.version>9.0.1.Final</hibernate.validator.version>
133133
<eclipselink.version>5.0.0-B09</eclipselink.version>
134134
<jpa.version>3.2.0</jpa.version>
135135
<jakarta.annotation.version>3.0.0</jakarta.annotation.version>
136136

137-
<assertj.version>3.27.3</assertj.version>
137+
<assertj.version>3.27.4</assertj.version>
138138
<mvn.version>3.9.11</mvn.version>
139139
<guava.version>33.4.8-jre</guava.version>
140140
<codegen.version>0.6.8</codegen.version>
@@ -286,7 +286,7 @@
286286
<dependency>
287287
<groupId>io.projectreactor</groupId>
288288
<artifactId>reactor-bom</artifactId>
289-
<version>2024.0.8</version>
289+
<version>2024.0.9</version>
290290
<type>pom</type>
291291
<scope>import</scope>
292292
</dependency>
@@ -802,15 +802,14 @@
802802
<build>
803803
<plugins>
804804
<plugin>
805-
<groupId>org.sonatype.plugins</groupId>
806-
<artifactId>nexus-staging-maven-plugin</artifactId>
807-
<version>1.7.0</version>
805+
<groupId>org.sonatype.central</groupId>
806+
<artifactId>central-publishing-maven-plugin</artifactId>
807+
<version>0.8.0</version>
808808
<extensions>true</extensions>
809809
<configuration>
810-
<serverId>ossrh</serverId>
811-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
812-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
813-
<stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
810+
<publishingServerId>central</publishingServerId>
811+
<autoPublish>true</autoPublish>
812+
<waitUntil>published</waitUntil>
814813
</configuration>
815814
</plugin>
816815
</plugins>
@@ -1038,18 +1037,18 @@
10381037
<plugin>
10391038
<groupId>org.openrewrite.maven</groupId>
10401039
<artifactId>rewrite-maven-plugin</artifactId>
1041-
<version>6.15.0</version>
1040+
<version>6.16.0</version>
10421041

10431042
<dependencies>
10441043
<dependency>
10451044
<groupId>org.openrewrite.recipe</groupId>
10461045
<artifactId>rewrite-testing-frameworks</artifactId>
1047-
<version>3.14.1</version>
1046+
<version>3.15.0</version>
10481047
</dependency>
10491048
<dependency>
10501049
<groupId>org.openrewrite.recipe</groupId>
10511050
<artifactId>rewrite-migrate-java</artifactId>
1052-
<version>3.14.1</version>
1051+
<version>3.15.0</version>
10531052
</dependency>
10541053
</dependencies>
10551054

querydsl-examples/querydsl-example-jpa-quarkus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>Querydsl example - JPA Quarkus</name>
1313

1414
<properties>
15-
<quarkus.version>3.24.5</quarkus.version>
15+
<quarkus.version>3.25.2</quarkus.version>
1616
</properties>
1717

1818
<dependencyManagement>

0 commit comments

Comments
 (0)