Skip to content

Commit 007c67b

Browse files
authored
Merge branch 'master' into fix/inner-class-naming-ksp
2 parents a9422dc + a78b8c6 commit 007c67b

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@
105105
<git-code-format-maven-plugin.version>5.3</git-code-format-maven-plugin.version>
106106

107107
<junit.version>5.13.4</junit.version>
108-
<ecj.version>3.42.0</ecj.version>
108+
<ecj.version>3.43.0</ecj.version>
109109
<jdo.version>3.2.1</jdo.version>
110-
<springboot.version>3.5.4</springboot.version>
110+
<springboot.version>3.5.5</springboot.version>
111111
<spring.version>6.2.10</spring.version>
112112

113113
<!-- SQL deps -->
@@ -118,27 +118,27 @@
118118
<postgresql.version>42.7.7</postgresql.version>
119119
<oracle.version>23.9.0.25.07</oracle.version>
120120
<mysql.version>9.4.0</mysql.version>
121-
<mssql.version>13.1.1.jre8-preview</mssql.version>
121+
<mssql.version>13.2.0.jre8</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>
125-
<firebird.version>5.0.8.java11</firebird.version>
125+
<firebird.version>5.0.9.java11</firebird.version>
126126
<mongodb.version>5.5.1</mongodb.version>
127127

128128
<r2dbc.version>1.0.0.RELEASE</r2dbc.version>
129129

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

137137
<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>
141-
<byte-buddy.version>1.17.6</byte-buddy.version>
141+
<byte-buddy.version>1.17.7</byte-buddy.version>
142142
<slf4j.version>2.0.17</slf4j.version>
143143
<surefire.version>3.5.3</surefire.version>
144144
<animal-sniffer.version>1.24</animal-sniffer.version>
@@ -178,7 +178,7 @@
178178
<dependency>
179179
<groupId>org.jetbrains</groupId>
180180
<artifactId>annotations</artifactId>
181-
<version>26.0.2</version>
181+
<version>26.0.2-1</version>
182182
<scope>provided</scope>
183183
</dependency>
184184
<dependency>
@@ -340,7 +340,7 @@
340340
<plugin>
341341
<groupId>org.apache.maven.plugins</groupId>
342342
<artifactId>maven-javadoc-plugin</artifactId>
343-
<version>3.11.2</version>
343+
<version>3.11.3</version>
344344
</plugin>
345345
<plugin>
346346
<groupId>org.apache.maven.plugins</groupId>
@@ -592,7 +592,7 @@
592592
<plugin>
593593
<groupId>io.sundr</groupId>
594594
<artifactId>sundr-maven-plugin</artifactId>
595-
<version>0.200.4</version>
595+
<version>0.220.0</version>
596596
<inherited>false</inherited>
597597
<configuration>
598598
<boms>
@@ -762,7 +762,7 @@
762762
<plugin>
763763
<groupId>org.apache.maven.plugins</groupId>
764764
<artifactId>maven-wrapper-plugin</artifactId>
765-
<version>3.3.2</version>
765+
<version>3.3.3</version>
766766
<configuration>
767767
<mavenVersion>${mvn.version}</mavenVersion>
768768
</configuration>
@@ -1037,18 +1037,18 @@
10371037
<plugin>
10381038
<groupId>org.openrewrite.maven</groupId>
10391039
<artifactId>rewrite-maven-plugin</artifactId>
1040-
<version>6.16.0</version>
1040+
<version>6.17.0</version>
10411041

10421042
<dependencies>
10431043
<dependency>
10441044
<groupId>org.openrewrite.recipe</groupId>
10451045
<artifactId>rewrite-testing-frameworks</artifactId>
1046-
<version>3.15.0</version>
1046+
<version>3.16.0</version>
10471047
</dependency>
10481048
<dependency>
10491049
<groupId>org.openrewrite.recipe</groupId>
10501050
<artifactId>rewrite-migrate-java</artifactId>
1051-
<version>3.15.0</version>
1051+
<version>3.16.0</version>
10521052
</dependency>
10531053
</dependencies>
10541054

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.25.3</quarkus.version>
15+
<quarkus.version>3.26.2</quarkus.version>
1616
</properties>
1717

1818
<dependencyManagement>

querydsl-examples/querydsl-example-kotlin-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>com.fasterxml.jackson.module</groupId>
3030
<artifactId>jackson-module-kotlin</artifactId>
31-
<version>2.19.2</version>
31+
<version>2.20.0</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.jetbrains.kotlin</groupId>

querydsl-examples/querydsl-example-sql-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>org.projectlombok</groupId>
3434
<artifactId>lombok</artifactId>
35-
<version>1.18.38</version>
35+
<version>1.18.40</version>
3636
<scope>provided</scope>
3737
</dependency>
3838

querydsl-libraries/querydsl-sql-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.fasterxml.jackson</groupId>
1919
<artifactId>jackson-bom</artifactId>
20-
<version>2.19.2</version>
20+
<version>2.20.0</version>
2121
<type>pom</type>
2222
<scope>import</scope>
2323
</dependency>

0 commit comments

Comments
 (0)