File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ pom.xml.versionsBackup
12
12
pom.xml.next
13
13
release.properties
14
14
dependency-reduced-pom.xml
15
+ .flattened-pom.xml
15
16
buildNumber.properties
16
17
.mvn /timing.properties
17
18
Original file line number Diff line number Diff line change 85
85
<lombok-version >1.18.20</lombok-version >
86
86
<maven-plugin-annotations-version >3.5</maven-plugin-annotations-version >
87
87
<maven-plugin-depdendencies-version >3.3.9</maven-plugin-depdendencies-version >
88
+ <maven-plugin-flatten-version >1.2.7</maven-plugin-flatten-version >
88
89
<maven-plugin-plugin-version >3.6.4</maven-plugin-plugin-version >
89
90
<maven-plugin-testing-harness-version >3.3.0</maven-plugin-testing-harness-version >
90
91
<rgxgen-version >1.3</rgxgen-version >
362
363
<artifactId >build-helper-maven-plugin</artifactId >
363
364
<version >${build-helper-maven-plugin-version} </version >
364
365
</plugin >
366
+ <plugin >
367
+ <groupId >org.codehaus.mojo</groupId >
368
+ <artifactId >flatten-maven-plugin</artifactId >
369
+ <version >${maven-plugin-flatten-version} </version >
370
+ </plugin >
365
371
<plugin >
366
372
<groupId >org.apache.maven.plugins</groupId >
367
373
<artifactId >maven-jar-plugin</artifactId >
470
476
</execution >
471
477
</executions >
472
478
</plugin >
479
+ <plugin >
480
+ <groupId >org.codehaus.mojo</groupId >
481
+ <artifactId >flatten-maven-plugin</artifactId >
482
+ <configuration >
483
+ <!-- see https://central.sonatype.org/publish/requirements -->
484
+ <flattenMode >ossrh</flattenMode >
485
+ </configuration >
486
+ <executions >
487
+ <execution >
488
+ <id >flatten</id >
489
+ <phase >process-resources</phase >
490
+ <goals >
491
+ <goal >flatten</goal >
492
+ </goals >
493
+ </execution >
494
+ <execution >
495
+ <id >clean-flatten</id >
496
+ <phase >clean</phase >
497
+ <goals >
498
+ <goal >clean</goal >
499
+ </goals >
500
+ </execution >
501
+ </executions >
502
+ </plugin >
473
503
<plugin >
474
504
<groupId >org.apache.maven.plugins</groupId >
475
505
<artifactId >maven-source-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments