[JAVA-28927] Upgrade lombok-modules to use Spring Boot 3 (#15896)

This commit is contained in:
Bipin kumar 2024-02-29 00:58:47 +05:30 committed by GitHub
parent cf864cf8b8
commit 6416a60875
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 18 additions and 9 deletions

View File

@ -58,6 +58,13 @@
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.openapitools</groupId> <groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId> <artifactId>openapi-generator-maven-plugin</artifactId>

View File

@ -33,13 +33,15 @@
</dependencies> </dependencies>
<build> <build>
<finalName>lombok</finalName> <plugins>
<resources> <plugin>
<resource> <groupId>org.springframework.boot</groupId>
<directory>src/main/resources</directory> <artifactId>spring-boot-maven-plugin</artifactId>
<filtering>true</filtering> <configuration>
</resource> <skip>true</skip>
</resources> </configuration>
</plugin>
</plugins>
</build> </build>
<properties> <properties>

View File

@ -10,9 +10,9 @@
<parent> <parent>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId> <artifactId>parent-boot-3</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2</relativePath> <relativePath>../parent-boot-3</relativePath>
</parent> </parent>
<modules> <modules>