Skip to content

Commit c315a7f

Browse files
committed
feat:update the pom with old one
1 parent d60734c commit c315a7f

1 file changed

Lines changed: 28 additions & 22 deletions

File tree

pom.xml

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,34 @@
8484
</dependencies>
8585

8686
<build>
87+
<plugins>
88+
<!-- Compiler plugin with Lombok -->
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-compiler-plugin</artifactId>
92+
<version>3.13.0</version>
93+
<configuration>
94+
<annotationProcessorPaths>
95+
<path>
96+
<groupId>org.projectlombok</groupId>
97+
<artifactId>lombok</artifactId>
98+
<version>${lombok.version}</version>
99+
</path>
100+
</annotationProcessorPaths>
101+
</configuration>
102+
</plugin>
103+
104+
<!-- Deploy plugin configuration -->
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-deploy-plugin</artifactId>
108+
<version>3.1.2</version>
109+
<configuration>
110+
<skip>false</skip>
111+
</configuration>
112+
</plugin>
113+
</plugins>
114+
87115
<pluginManagement>
88116
<plugins>
89117
<!-- clean lifecycle -->
@@ -98,22 +126,6 @@
98126
<version>3.3.1</version>
99127
</plugin>
100128

101-
<!-- compiler plugin with Lombok annotation processor -->
102-
<plugin>
103-
<groupId>org.apache.maven.plugins</groupId>
104-
<artifactId>maven-compiler-plugin</artifactId>
105-
<version>3.13.0</version>
106-
<configuration>
107-
<annotationProcessorPaths>
108-
<path>
109-
<groupId>org.projectlombok</groupId>
110-
<artifactId>lombok</artifactId>
111-
<version>${lombok.version}</version>
112-
</path>
113-
</annotationProcessorPaths>
114-
</configuration>
115-
</plugin>
116-
117129
<!-- surefire plugin for tests -->
118130
<plugin>
119131
<artifactId>maven-surefire-plugin</artifactId>
@@ -132,12 +144,6 @@
132144
<version>3.1.2</version>
133145
</plugin>
134146

135-
<!-- deploy plugin -->
136-
<plugin>
137-
<artifactId>maven-deploy-plugin</artifactId>
138-
<version>3.1.2</version>
139-
</plugin>
140-
141147
<!-- site lifecycle -->
142148
<plugin>
143149
<artifactId>maven-site-plugin</artifactId>

0 commit comments

Comments
 (0)