Skip to content

Commit c9a285b

Browse files
[JAVA-37198] (#17031)
Co-authored-by: Alvin Austria <[email protected]>
1 parent c6b6548 commit c9a285b

File tree

4 files changed

+17
-20
lines changed
  • lombok-modules/lombok-2
  • spring-boot-modules/spring-boot-openapi
  • spring-swagger-codegen
    • custom-validations-opeanpi-codegen
    • openapi-custom-generator-api-client

4 files changed

+17
-20
lines changed

lombok-modules/lombok-2/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>lombok-2</artifactId>
7-
<version>0.1-SNAPSHOT</version>
87
<name>lombok-2</name>
8+
<version>0.1-SNAPSHOT</version>
99

1010
<parent>
1111
<groupId>com.baeldung</groupId>
@@ -68,7 +68,7 @@
6868
<plugin>
6969
<groupId>org.openapitools</groupId>
7070
<artifactId>openapi-generator-maven-plugin</artifactId>
71-
<version>${openapi.version}</version>
71+
<version>${openapi-generator-maven-plugin.version}</version>
7272
<executions>
7373
<execution>
7474
<goals>
@@ -95,7 +95,7 @@
9595
</build>
9696

9797
<properties>
98-
<openapi.version>7.7.0</openapi.version>
98+
<openapi-generator-maven-plugin.version>7.7.0</openapi-generator-maven-plugin.version>
9999
<gson.version>2.11.0</gson.version>
100100
<swagger-annotations.version>2.2.22</swagger-annotations.version>
101101
<jackson-databind-nullable.version>0.2.6</jackson-databind-nullable.version>

spring-boot-modules/spring-boot-openapi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<properties>
9090
<maven.compiler.source>17</maven.compiler.source>
9191
<maven.compiler.target>17</maven.compiler.target>
92-
<openapi-generator.version>7.3.0</openapi-generator.version>
92+
<openapi-generator.version>7.7.0</openapi-generator.version>
9393
<swagger-annotations.version>2.2.20</swagger-annotations.version>
9494
</properties>
9595

spring-swagger-codegen/custom-validations-opeanpi-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<log4j2.version>2.17.1</log4j2.version>
9393
<springdoc.version>1.7.0</springdoc.version>
9494
<openapi-generator.version>7.2.0</openapi-generator.version>
95-
<openapi-generator-maven-plugin.version>7.2.0</openapi-generator-maven-plugin.version>
95+
<openapi-generator-maven-plugin.version>7.7.0</openapi-generator-maven-plugin.version>
9696
<jackson-databind-nullable.version>0.2.6</jackson-databind-nullable.version>
9797
</properties>
9898

spring-swagger-codegen/openapi-custom-generator-api-client/pom.xml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,39 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>openapi-custom-generator-api-client</artifactId>
6+
<name>openapi-custom-generator-api-client</name>
7+
<description>OpenAPI custom generator sample</description>
8+
59
<parent>
610
<groupId>com.baeldung</groupId>
7-
<artifactId>parent-boot-3</artifactId>
11+
<artifactId>parent-boot-3</artifactId>
812
<version>0.0.1-SNAPSHOT</version>
913
<relativePath>../../parent-boot-3</relativePath>
1014
</parent>
11-
<artifactId>openapi-custom-generator-api-client</artifactId>
12-
<name>openapi-custom-generator-api-client</name>
13-
<description>OpenAPI custom generator sample</description>
14-
<properties>
15-
<java.version>17</java.version>
16-
<openapi-generator.version>7.5.0</openapi-generator.version>
17-
<camel.version>4.5.0</camel.version>
18-
</properties>
15+
1916
<dependencies>
2017
<dependency>
2118
<groupId>org.apache.camel.springboot</groupId>
2219
<artifactId>camel-spring-boot-starter</artifactId>
2320
<version>${camel.version}</version>
2421
</dependency>
25-
2622
<dependency>
2723
<groupId>org.apache.camel.springboot</groupId>
2824
<artifactId>camel-rest-starter</artifactId>
2925
<version>${camel.version}</version>
3026
</dependency>
31-
3227
<dependency>
3328
<groupId>org.apache.camel.springboot</groupId>
3429
<artifactId>camel-http-starter</artifactId>
3530
<version>${camel.version}</version>
3631
</dependency>
37-
3832
<dependency>
3933
<groupId>org.apache.camel.springboot</groupId>
4034
<artifactId>camel-jackson-starter</artifactId>
4135
<version>${camel.version}</version>
4236
<!-- use the same version as your Camel core version -->
4337
</dependency>
44-
4538
<dependency>
4639
<groupId>org.springframework.boot</groupId>
4740
<artifactId>spring-boot-configuration-processor</artifactId>
@@ -52,12 +45,10 @@
5245
<artifactId>spring-boot-starter-test</artifactId>
5346
<scope>test</scope>
5447
</dependency>
55-
5648
<dependency>
5749
<groupId>org.springframework.boot</groupId>
5850
<artifactId>spring-boot-starter-validation</artifactId>
5951
</dependency>
60-
6152
</dependencies>
6253

6354
<build>
@@ -133,4 +124,10 @@
133124
</plugins>
134125
</build>
135126

127+
<properties>
128+
<java.version>17</java.version>
129+
<openapi-generator.version>7.7.0</openapi-generator.version>
130+
<camel.version>4.5.0</camel.version>
131+
</properties>
132+
136133
</project>

0 commit comments

Comments
 (0)