|
1194 | 1194 | <executions> |
1195 | 1195 | <execution> |
1196 | 1196 | <id>attach-sources</id> |
| 1197 | + <phase>package</phase> |
1197 | 1198 | <goals> |
1198 | 1199 | <goal>jar-no-fork</goal> |
1199 | 1200 | </goals> |
1200 | | - <phase>package</phase> |
1201 | 1201 | </execution> |
1202 | 1202 | </executions> |
1203 | 1203 | </plugin> |
1204 | 1204 | <plugin> |
1205 | 1205 | <groupId>org.projectlombok</groupId> |
1206 | 1206 | <artifactId>lombok-maven-plugin</artifactId> |
1207 | 1207 | <version>1.18.20.0</version> |
1208 | | - <configuration> |
1209 | | - <addOutputDirectory>false</addOutputDirectory> |
1210 | | - </configuration> |
1211 | | - <dependencies> |
1212 | | - <dependency> |
1213 | | - <groupId>org.projectlombok</groupId> |
1214 | | - <artifactId>lombok</artifactId> |
1215 | | - <version>1.18.38</version> |
1216 | | - </dependency> |
1217 | | - </dependencies> |
1218 | 1208 | <executions> |
1219 | 1209 | <execution> |
1220 | 1210 | <id>delombok</id> |
| 1211 | + <phase>process-sources</phase> |
1221 | 1212 | <goals> |
1222 | 1213 | <goal>delombok</goal> |
1223 | 1214 | </goals> |
1224 | | - <phase>process-sources</phase> |
1225 | 1215 | <configuration> |
1226 | 1216 | <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> |
1227 | 1217 | <outputDirectory>${project.build.directory}/delombok</outputDirectory> |
1228 | 1218 | </configuration> |
1229 | 1219 | </execution> |
1230 | 1220 | </executions> |
| 1221 | + <dependencies> |
| 1222 | + <dependency> |
| 1223 | + <groupId>org.projectlombok</groupId> |
| 1224 | + <artifactId>lombok</artifactId> |
| 1225 | + <version>1.18.38</version> |
| 1226 | + </dependency> |
| 1227 | + </dependencies> |
| 1228 | + <configuration> |
| 1229 | + <addOutputDirectory>false</addOutputDirectory> |
| 1230 | + </configuration> |
1231 | 1231 | </plugin> |
1232 | 1232 | <plugin> |
1233 | 1233 | <groupId>org.apache.maven.plugins</groupId> |
1234 | 1234 | <artifactId>maven-javadoc-plugin</artifactId> |
1235 | 1235 | <version>3.11.2</version> |
1236 | | - <configuration> |
1237 | | - <quiet>true</quiet> |
1238 | | - <additionalOptions>-Xdoclint:none</additionalOptions> |
1239 | | - <show>protected</show> |
1240 | | - <sourcepath>${project.basedir}/target/delombok</sourcepath> |
1241 | | - </configuration> |
1242 | 1236 | <executions> |
1243 | 1237 | <execution> |
1244 | 1238 | <id>javadoc-jar</id> |
|
1247 | 1241 | </goals> |
1248 | 1242 | </execution> |
1249 | 1243 | </executions> |
| 1244 | + <configuration> |
| 1245 | + <quiet>true</quiet> |
| 1246 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 1247 | + <show>protected</show> |
| 1248 | + <sourcepath>${project.basedir}/target/delombok</sourcepath> |
| 1249 | + </configuration> |
1250 | 1250 | </plugin> |
1251 | 1251 | <plugin> |
1252 | 1252 | <groupId>org.apache.maven.plugins</groupId> |
|
1255 | 1255 | <executions> |
1256 | 1256 | <execution> |
1257 | 1257 | <id>sign-artifacts</id> |
| 1258 | + <phase>verify</phase> |
1258 | 1259 | <goals> |
1259 | 1260 | <goal>sign</goal> |
1260 | 1261 | </goals> |
1261 | | - <phase>verify</phase> |
1262 | 1262 | </execution> |
1263 | 1263 | </executions> |
1264 | 1264 | </plugin> |
|
1268 | 1268 | <version>3.1.4</version> |
1269 | 1269 | <executions> |
1270 | 1270 | <execution> |
| 1271 | + <phase>install</phase> |
1271 | 1272 | <goals> |
1272 | 1273 | <goal>install-file</goal> |
1273 | 1274 | </goals> |
1274 | | - <phase>install</phase> |
1275 | 1275 | <configuration> |
1276 | 1276 | <file>${project.basedir}/target/${project.artifactId}-${project.version}.jar</file> |
1277 | 1277 | <sources>${project.basedir}/target/${project.artifactId}-${project.version}-sources.jar</sources> |
|
1285 | 1285 | </execution> |
1286 | 1286 | </executions> |
1287 | 1287 | </plugin> |
1288 | | - <!-- Skip default deploy plugin in favor of central-publishing-maven-plugin --> |
| 1288 | + <!-- Skip default deploy plugin in favor of central-publishing-maven-plugin --> |
1289 | 1289 | <plugin> |
1290 | 1290 | <groupId>org.apache.maven.plugins</groupId> |
1291 | 1291 | <artifactId>maven-deploy-plugin</artifactId> |
|
1350 | 1350 | <plugin> |
1351 | 1351 | <groupId>org.apache.maven.plugins</groupId> |
1352 | 1352 | <artifactId>maven-install-plugin</artifactId> |
1353 | | - <inherited>false</inherited> |
1354 | 1353 | <executions> |
1355 | 1354 | <execution> |
1356 | 1355 | <configuration> |
|
1361 | 1360 | </configuration> |
1362 | 1361 | </execution> |
1363 | 1362 | </executions> |
| 1363 | + <inherited>false</inherited> |
1364 | 1364 | </plugin> |
1365 | 1365 | <plugin> |
1366 | 1366 | <groupId>org.sonatype.central</groupId> |
|
0 commit comments