Skip to content

Commit ee0cc82

Browse files
committed
Adding springdoc-openapi-bom. Fixes #2944
1 parent 060645f commit ee0cc82

File tree

4 files changed

+205
-0
lines changed

4 files changed

+205
-0
lines changed

Diff for: pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
<module>springdoc-openapi-starter-webflux-api</module>
5555
<module>springdoc-openapi-starter-webmvc-ui</module>
5656
<module>springdoc-openapi-starter-webflux-ui</module>
57+
<module>springdoc-openapi-bom</module>
5758
</modules>
5859

5960
<properties>

Diff for: springdoc-openapi-bom/.gitignore

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/target/www/**
5+
/src/test/javascript/coverage/
6+
7+
######################
8+
# Node
9+
######################
10+
/node/
11+
node_tmp/
12+
node_modules/
13+
npm-debug.log.*
14+
/.awcache/*
15+
/.cache-loader/*
16+
17+
######################
18+
# SASS
19+
######################
20+
.sass-cache/
21+
22+
######################
23+
# Eclipse
24+
######################
25+
*.pydevproject
26+
.project
27+
.metadata
28+
tmp/
29+
tmp/**/*
30+
*.tmp
31+
*.bak
32+
*.swp
33+
*~.nib
34+
local.properties
35+
.classpath
36+
.settings/
37+
.loadpath
38+
.factorypath
39+
/src/main/resources/rebel.xml
40+
41+
# External tool builders
42+
.externalToolBuilders/**
43+
44+
# Locally stored "Eclipse launch configurations"
45+
*.launch
46+
47+
# CDT-specific
48+
.cproject
49+
50+
# PDT-specific
51+
.buildpath
52+
53+
######################
54+
# Intellij
55+
######################
56+
.idea/
57+
*.iml
58+
*.iws
59+
*.ipr
60+
*.ids
61+
*.orig
62+
classes/
63+
out/
64+
65+
######################
66+
# Visual Studio Code
67+
######################
68+
.vscode/
69+
70+
######################
71+
# Maven
72+
######################
73+
/log/
74+
/target/
75+
76+
######################
77+
# Gradle
78+
######################
79+
.gradle/
80+
/build/
81+
82+
######################
83+
# Package Files
84+
######################
85+
*.jar
86+
*.war
87+
*.ear
88+
*.db
89+
90+
######################
91+
# Windows
92+
######################
93+
# Windows image file caches
94+
Thumbs.db
95+
96+
# Folder config file
97+
Desktop.ini
98+
99+
######################
100+
# Mac OSX
101+
######################
102+
.DS_Store
103+
.svn
104+
105+
# Thumbnails
106+
._*
107+
108+
# Files that might appear on external disk
109+
.Spotlight-V100
110+
.Trashes
111+
112+
######################
113+
# Directories
114+
######################
115+
/bin/
116+
/deploy/
117+
118+
######################
119+
# Logs
120+
######################
121+
*.log*
122+
123+
######################
124+
# Others
125+
######################
126+
*.class
127+
*.*~
128+
*~
129+
.merge_file*
130+
131+
######################
132+
# Gradle Wrapper
133+
######################
134+
!gradle/wrapper/gradle-wrapper.jar
135+
136+
######################
137+
# Maven Wrapper
138+
######################
139+
!.mvn/wrapper/maven-wrapper.jar
140+
141+
######################
142+
# ESLint
143+
######################
144+
.eslintcache

Diff for: springdoc-openapi-bom/pom.xml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>org.springdoc</groupId>
5+
<artifactId>springdoc-openapi</artifactId>
6+
<version>2.8.7-SNAPSHOT</version>
7+
</parent>
8+
<artifactId>springdoc-openapi-bom</artifactId>
9+
<dependencyManagement>
10+
<dependencies>
11+
<dependency>
12+
<groupId>org.springdoc</groupId>
13+
<artifactId>springdoc-openapi-starter-common</artifactId>
14+
<version>${project.version}</version>
15+
</dependency>
16+
<dependency>
17+
<groupId>org.springdoc</groupId>
18+
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
19+
<version>${project.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.springdoc</groupId>
23+
<artifactId>springdoc-openapi-starter-webflux-api</artifactId>
24+
<version>${project.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.springdoc</groupId>
28+
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
29+
<version>${project.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.springdoc</groupId>
33+
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
34+
<version>${project.version}</version>
35+
</dependency>
36+
</dependencies>
37+
</dependencyManagement>
38+
39+
<build>
40+
<plugins>
41+
<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>
52+
</plugin>
53+
</plugins>
54+
</build>
55+
56+
</project>

Diff for: springdoc-openapi-starter-common/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-autoconfigure</artifactId>
1313
</dependency>
14+
<dependency>
15+
<groupId>org.springframework.boot</groupId>
16+
<artifactId>spring-boot-starter-validation</artifactId>
17+
</dependency>
1418
<dependency>
1519
<groupId>org.springframework.boot</groupId>
1620
<artifactId>spring-boot-configuration-processor</artifactId>

0 commit comments

Comments
 (0)