Skip to content

Commit a63807a

Browse files
committed
reorder pom file
1 parent f7e1959 commit a63807a

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

pom.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,51 +1194,45 @@
11941194
<executions>
11951195
<execution>
11961196
<id>attach-sources</id>
1197+
<phase>package</phase>
11971198
<goals>
11981199
<goal>jar-no-fork</goal>
11991200
</goals>
1200-
<phase>package</phase>
12011201
</execution>
12021202
</executions>
12031203
</plugin>
12041204
<plugin>
12051205
<groupId>org.projectlombok</groupId>
12061206
<artifactId>lombok-maven-plugin</artifactId>
12071207
<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>
12181208
<executions>
12191209
<execution>
12201210
<id>delombok</id>
1211+
<phase>process-sources</phase>
12211212
<goals>
12221213
<goal>delombok</goal>
12231214
</goals>
1224-
<phase>process-sources</phase>
12251215
<configuration>
12261216
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
12271217
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
12281218
</configuration>
12291219
</execution>
12301220
</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>
12311231
</plugin>
12321232
<plugin>
12331233
<groupId>org.apache.maven.plugins</groupId>
12341234
<artifactId>maven-javadoc-plugin</artifactId>
12351235
<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>
12421236
<executions>
12431237
<execution>
12441238
<id>javadoc-jar</id>
@@ -1247,6 +1241,12 @@
12471241
</goals>
12481242
</execution>
12491243
</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>
12501250
</plugin>
12511251
<plugin>
12521252
<groupId>org.apache.maven.plugins</groupId>
@@ -1255,10 +1255,10 @@
12551255
<executions>
12561256
<execution>
12571257
<id>sign-artifacts</id>
1258+
<phase>verify</phase>
12581259
<goals>
12591260
<goal>sign</goal>
12601261
</goals>
1261-
<phase>verify</phase>
12621262
</execution>
12631263
</executions>
12641264
</plugin>
@@ -1268,10 +1268,10 @@
12681268
<version>3.1.4</version>
12691269
<executions>
12701270
<execution>
1271+
<phase>install</phase>
12711272
<goals>
12721273
<goal>install-file</goal>
12731274
</goals>
1274-
<phase>install</phase>
12751275
<configuration>
12761276
<file>${project.basedir}/target/${project.artifactId}-${project.version}.jar</file>
12771277
<sources>${project.basedir}/target/${project.artifactId}-${project.version}-sources.jar</sources>
@@ -1285,7 +1285,7 @@
12851285
</execution>
12861286
</executions>
12871287
</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 -->
12891289
<plugin>
12901290
<groupId>org.apache.maven.plugins</groupId>
12911291
<artifactId>maven-deploy-plugin</artifactId>
@@ -1350,7 +1350,6 @@
13501350
<plugin>
13511351
<groupId>org.apache.maven.plugins</groupId>
13521352
<artifactId>maven-install-plugin</artifactId>
1353-
<inherited>false</inherited>
13541353
<executions>
13551354
<execution>
13561355
<configuration>
@@ -1361,6 +1360,7 @@
13611360
</configuration>
13621361
</execution>
13631362
</executions>
1363+
<inherited>false</inherited>
13641364
</plugin>
13651365
<plugin>
13661366
<groupId>org.sonatype.central</groupId>

0 commit comments

Comments
 (0)