File tree 2 files changed +27
-10
lines changed
2 files changed +27
-10
lines changed Original file line number Diff line number Diff line change 61
61
<maven-gpg-plugin .version>1.6</maven-gpg-plugin .version>
62
62
<maven-release-plugin .version>2.5.3</maven-release-plugin .version>
63
63
<nexus-staging-maven-plugin >1.6.8</nexus-staging-maven-plugin >
64
+ <flatten-maven-plugin .version>1.5.0</flatten-maven-plugin .version>
64
65
<swagger-api .version>2.2.29</swagger-api .version>
65
66
<swagger-ui .version>5.20.1</swagger-ui .version>
66
67
<gmavenplus-plugin .version>1.13.1</gmavenplus-plugin .version>
Original file line number Diff line number Diff line change 6
6
<version >2.8.7-SNAPSHOT</version >
7
7
</parent >
8
8
<artifactId >springdoc-openapi-bom</artifactId >
9
+ <packaging >pom</packaging >
9
10
<dependencyManagement >
10
11
<dependencies >
11
12
<dependency >
39
40
<build >
40
41
<plugins >
41
42
<plugin >
42
- <groupId >org.apache.maven.plugins</groupId >
43
- <artifactId >maven-jar-plugin</artifactId >
44
- <configuration >
45
- <archive >
46
- <manifestEntries >
47
- <Automatic-Module-Name >org.springdoc.openapi.bom
48
- </Automatic-Module-Name >
49
- </manifestEntries >
50
- </archive >
51
- </configuration >
43
+ <groupId >org.codehaus.mojo</groupId >
44
+ <artifactId >flatten-maven-plugin</artifactId >
45
+ <version >${flatten-maven-plugin.version} </version >
46
+ <inherited >false</inherited >
47
+ <executions >
48
+ <execution >
49
+ <!-- Flatten and simplify our own POM for install/deploy -->
50
+ <id >flatten</id >
51
+ <phase >process-resources</phase >
52
+ <goals >
53
+ <goal >flatten</goal >
54
+ </goals >
55
+ <configuration >
56
+ <updatePomFile >true</updatePomFile >
57
+ <flattenMode >bom</flattenMode >
58
+ <pomElements >
59
+ <properties >remove</properties >
60
+ <distributionManagement >remove</distributionManagement >
61
+ <dependencyManagement >keep</dependencyManagement >
62
+ <repositories >remove</repositories >
63
+ <issueManagement >remove</issueManagement >
64
+ </pomElements >
65
+ </configuration >
66
+ </execution >
67
+ </executions >
52
68
</plugin >
53
69
</plugins >
54
70
</build >
You can’t perform that action at this time.
0 commit comments