@team-supercharge/oasg 16.8.1-temp-build-node-version-7706d3f9 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -33
- package/bin/oasg +6 -6
- package/config.schema.yml +4 -1
- package/package.json +1 -1
- package/targets/kmp/templates/build.gradle.kts.mustache +11 -13
- package/targets/kmp/templates/libraries/multiplatform/api.mustache +9 -9
- package/targets/nestjs/templates/package.mustache +2 -1
- package/targets/nestjs/templates/tsconfig.mustache +0 -1
- package/targets/spring/generator-config.json +1 -1
- package/targets/spring-kotlin/generator-config.json +2 -4
- package/targets/feign/templates/libraries/spring-cloud/pom-sb3.mustache +0 -171
- package/targets/feign/templates/libraries/spring-cloud/pom.mustache +0 -187
- package/targets/feign-kotlin/templates/libraries/spring-cloud/pom-sb3.mustache +0 -246
- package/targets/feign-kotlin/templates/libraries/spring-cloud/pom.mustache +0 -223
- package/targets/spring/templates/libraries/spring-boot/pom-sb3.mustache +0 -262
- package/targets/spring/templates/libraries/spring-boot/pom.mustache +0 -272
- package/targets/spring-kotlin/templates/libraries/spring-boot/pom-sb3.mustache +0 -213
- package/targets/spring-kotlin/templates/libraries/spring-boot/pom.mustache +0 -200
|
@@ -1,262 +0,0 @@
|
|
|
1
|
-
{{! attach sources }}
|
|
2
|
-
<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/maven-v4_0_0.xsd">
|
|
3
|
-
<modelVersion>4.0.0</modelVersion>
|
|
4
|
-
<groupId>{{groupId}}</groupId>
|
|
5
|
-
<artifactId>{{artifactId}}</artifactId>
|
|
6
|
-
<packaging>jar</packaging>
|
|
7
|
-
<name>{{artifactId}}</name>
|
|
8
|
-
<version>{{artifactVersion}}</version>
|
|
9
|
-
<properties>
|
|
10
|
-
<java.version>17</java.version>
|
|
11
|
-
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
12
|
-
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
13
|
-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
14
|
-
{{#springDocDocumentationProvider}}
|
|
15
|
-
<springdoc.version>2.6.0</springdoc.version>
|
|
16
|
-
{{/springDocDocumentationProvider}}
|
|
17
|
-
{{^springDocDocumentationProvider}}
|
|
18
|
-
{{#swagger2AnnotationLibrary}}
|
|
19
|
-
<swagger-annotations.version>2.2.22</swagger-annotations.version>
|
|
20
|
-
{{/swagger2AnnotationLibrary}}
|
|
21
|
-
{{/springDocDocumentationProvider}}
|
|
22
|
-
{{#useSwaggerUI}}
|
|
23
|
-
<swagger-ui.version>5.17.14</swagger-ui.version>
|
|
24
|
-
{{/useSwaggerUI}}
|
|
25
|
-
{{#virtualService}}
|
|
26
|
-
<virtualan.version>2.5.5</virtualan.version>
|
|
27
|
-
{{/virtualService}}
|
|
28
|
-
</properties>
|
|
29
|
-
{{#parentOverridden}}
|
|
30
|
-
<parent>
|
|
31
|
-
<groupId>{{{parentGroupId}}}</groupId>
|
|
32
|
-
<artifactId>{{{parentArtifactId}}}</artifactId>
|
|
33
|
-
<version>{{{parentVersion}}}</version>
|
|
34
|
-
</parent>
|
|
35
|
-
{{/parentOverridden}}
|
|
36
|
-
{{^parentOverridden}}
|
|
37
|
-
<parent>
|
|
38
|
-
<groupId>org.springframework.boot</groupId>
|
|
39
|
-
<artifactId>spring-boot-starter-parent</artifactId>
|
|
40
|
-
<version>3.1.3</version>
|
|
41
|
-
<relativePath/> <!-- lookup parent from repository -->
|
|
42
|
-
</parent>
|
|
43
|
-
{{/parentOverridden}}
|
|
44
|
-
|
|
45
|
-
<repositories>
|
|
46
|
-
<repository>
|
|
47
|
-
<id>repository.spring.milestone</id>
|
|
48
|
-
<name>Spring Milestone Repository</name>
|
|
49
|
-
<url>https://repo.spring.io/milestone</url>
|
|
50
|
-
</repository>
|
|
51
|
-
</repositories>
|
|
52
|
-
<pluginRepositories>
|
|
53
|
-
<pluginRepository>
|
|
54
|
-
<id>spring-milestones</id>
|
|
55
|
-
<url>https://repo.spring.io/milestone</url>
|
|
56
|
-
</pluginRepository>
|
|
57
|
-
</pluginRepositories>
|
|
58
|
-
|
|
59
|
-
<build>
|
|
60
|
-
<sourceDirectory>src/main/java</sourceDirectory>
|
|
61
|
-
{{#interfaceOnly}}
|
|
62
|
-
<plugins>
|
|
63
|
-
<plugin>
|
|
64
|
-
<groupId>org.apache.maven.plugins</groupId>
|
|
65
|
-
<artifactId>maven-source-plugin</artifactId>
|
|
66
|
-
<executions>
|
|
67
|
-
<execution>
|
|
68
|
-
<id>attach-sources</id>
|
|
69
|
-
<goals>
|
|
70
|
-
<goal>jar</goal>
|
|
71
|
-
</goals>
|
|
72
|
-
</execution>
|
|
73
|
-
</executions>
|
|
74
|
-
</plugin>
|
|
75
|
-
</plugins>
|
|
76
|
-
{{/interfaceOnly}}
|
|
77
|
-
{{^interfaceOnly}}
|
|
78
|
-
<plugins>
|
|
79
|
-
<plugin>
|
|
80
|
-
<groupId>org.springframework.boot</groupId>
|
|
81
|
-
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
82
|
-
<configuration>
|
|
83
|
-
{{#classifier}}
|
|
84
|
-
<classifier>{{{classifier}}}</classifier>
|
|
85
|
-
{{/classifier}}
|
|
86
|
-
{{#lombok}}
|
|
87
|
-
<excludes>
|
|
88
|
-
<exclude>
|
|
89
|
-
<groupId>org.projectlombok</groupId>
|
|
90
|
-
<artifactId>lombok</artifactId>
|
|
91
|
-
</exclude>
|
|
92
|
-
</excludes>
|
|
93
|
-
{{/lombok}}
|
|
94
|
-
</configuration>
|
|
95
|
-
</plugin>
|
|
96
|
-
{{#apiFirst}}
|
|
97
|
-
<plugin>
|
|
98
|
-
<groupId>org.openapitools</groupId>
|
|
99
|
-
<artifactId>openapi-generator-maven-plugin</artifactId>
|
|
100
|
-
<version>{{{generatorVersion}}}</version>
|
|
101
|
-
<executions>
|
|
102
|
-
<execution>
|
|
103
|
-
<goals>
|
|
104
|
-
<goal>generate</goal>
|
|
105
|
-
</goals>
|
|
106
|
-
<configuration>
|
|
107
|
-
<inputSpec>src/main/resources/openapi.yaml</inputSpec>
|
|
108
|
-
<generatorName>spring</generatorName>
|
|
109
|
-
<apiPackage>{{{apiPackage}}}</apiPackage>
|
|
110
|
-
<modelPackage>{{{modelPackage}}}</modelPackage>
|
|
111
|
-
<generateSupportingFiles>false</generateSupportingFiles>
|
|
112
|
-
{{#modelNamePrefix}}
|
|
113
|
-
<modelNamePrefix>{{{.}}}</modelNamePrefix>
|
|
114
|
-
{{/modelNamePrefix}}
|
|
115
|
-
{{#modelNameSuffix}}
|
|
116
|
-
<modelNameSuffix>{{{.}}}</modelNameSuffix>
|
|
117
|
-
{{/modelNameSuffix}}
|
|
118
|
-
<configOptions>
|
|
119
|
-
{{#configOptions}}
|
|
120
|
-
<{{left}}>{{right}}</{{left}}>
|
|
121
|
-
{{/configOptions}}
|
|
122
|
-
</configOptions>
|
|
123
|
-
</configuration>
|
|
124
|
-
</execution>
|
|
125
|
-
</executions>
|
|
126
|
-
</plugin>
|
|
127
|
-
{{/apiFirst}}
|
|
128
|
-
</plugins>
|
|
129
|
-
{{/interfaceOnly}}
|
|
130
|
-
</build>
|
|
131
|
-
<dependencies>
|
|
132
|
-
<dependency>
|
|
133
|
-
<groupId>org.springframework.boot</groupId>
|
|
134
|
-
<artifactId>spring-boot-starter-web{{#reactive}}flux{{/reactive}}</artifactId>
|
|
135
|
-
</dependency>
|
|
136
|
-
<dependency>
|
|
137
|
-
<groupId>org.springframework.data</groupId>
|
|
138
|
-
<artifactId>spring-data-commons</artifactId>
|
|
139
|
-
</dependency>
|
|
140
|
-
{{#springDocDocumentationProvider}}
|
|
141
|
-
<!--SpringDoc dependencies -->
|
|
142
|
-
{{#useSwaggerUI}}
|
|
143
|
-
<dependency>
|
|
144
|
-
<groupId>org.springdoc</groupId>
|
|
145
|
-
<artifactId>springdoc-openapi-starter-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-ui</artifactId>
|
|
146
|
-
<version>${springdoc.version}</version>
|
|
147
|
-
</dependency>
|
|
148
|
-
{{/useSwaggerUI}}
|
|
149
|
-
{{^useSwaggerUI}}
|
|
150
|
-
<dependency>
|
|
151
|
-
<groupId>org.springdoc</groupId>
|
|
152
|
-
<artifactId>springdoc-openapi-starter-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-api</artifactId>
|
|
153
|
-
<version>${springdoc.version}</version>
|
|
154
|
-
</dependency>
|
|
155
|
-
{{/useSwaggerUI}}
|
|
156
|
-
{{/springDocDocumentationProvider}}
|
|
157
|
-
{{#useSwaggerUI}}
|
|
158
|
-
{{^springDocDocumentationProvider}}
|
|
159
|
-
<dependency>
|
|
160
|
-
<groupId>org.webjars</groupId>
|
|
161
|
-
<artifactId>swagger-ui</artifactId>
|
|
162
|
-
<version>${swagger-ui.version}</version>
|
|
163
|
-
</dependency>
|
|
164
|
-
<dependency>
|
|
165
|
-
<groupId>org.webjars</groupId>
|
|
166
|
-
<artifactId>webjars-locator-core</artifactId>
|
|
167
|
-
</dependency>
|
|
168
|
-
{{/springDocDocumentationProvider}}
|
|
169
|
-
{{/useSwaggerUI}}
|
|
170
|
-
{{^springDocDocumentationProvider}}
|
|
171
|
-
{{#swagger2AnnotationLibrary}}
|
|
172
|
-
<dependency>
|
|
173
|
-
<groupId>io.swagger.core.v3</groupId>
|
|
174
|
-
<artifactId>swagger-annotations</artifactId>
|
|
175
|
-
<version>${swagger-annotations.version}</version>
|
|
176
|
-
</dependency>
|
|
177
|
-
{{/swagger2AnnotationLibrary}}
|
|
178
|
-
{{/springDocDocumentationProvider}}
|
|
179
|
-
<!-- @Nullable annotation -->
|
|
180
|
-
<dependency>
|
|
181
|
-
<groupId>com.google.code.findbugs</groupId>
|
|
182
|
-
<artifactId>jsr305</artifactId>
|
|
183
|
-
<version>3.0.2</version>
|
|
184
|
-
</dependency>
|
|
185
|
-
<dependency>
|
|
186
|
-
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
187
|
-
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
188
|
-
</dependency>
|
|
189
|
-
{{#withXml}}
|
|
190
|
-
<!-- XML processing: Jackson -->
|
|
191
|
-
<dependency>
|
|
192
|
-
<groupId>jakarta.xml.bind</groupId>
|
|
193
|
-
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
194
|
-
</dependency>
|
|
195
|
-
<dependency>
|
|
196
|
-
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
197
|
-
<artifactId>jackson-dataformat-xml</artifactId>
|
|
198
|
-
</dependency>
|
|
199
|
-
{{/withXml}}
|
|
200
|
-
<dependency>
|
|
201
|
-
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
202
|
-
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
203
|
-
</dependency>
|
|
204
|
-
{{#joda}}
|
|
205
|
-
<dependency>
|
|
206
|
-
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
207
|
-
<artifactId>jackson-datatype-joda</artifactId>
|
|
208
|
-
</dependency>
|
|
209
|
-
{{/joda}}
|
|
210
|
-
{{#openApiNullable}}
|
|
211
|
-
<dependency>
|
|
212
|
-
<groupId>org.openapitools</groupId>
|
|
213
|
-
<artifactId>jackson-databind-nullable</artifactId>
|
|
214
|
-
<version>0.2.6</version>
|
|
215
|
-
</dependency>
|
|
216
|
-
{{/openApiNullable}}
|
|
217
|
-
{{#useBeanValidation}}
|
|
218
|
-
<!-- Bean Validation API support -->
|
|
219
|
-
<dependency>
|
|
220
|
-
<groupId>org.springframework.boot</groupId>
|
|
221
|
-
<artifactId>spring-boot-starter-validation</artifactId>
|
|
222
|
-
</dependency>
|
|
223
|
-
{{/useBeanValidation}}
|
|
224
|
-
{{#virtualService}}
|
|
225
|
-
<!-- START Virtual Service API support -->
|
|
226
|
-
<dependency>
|
|
227
|
-
<groupId>io.virtualan</groupId>
|
|
228
|
-
<artifactId>virtualan-plugin</artifactId>
|
|
229
|
-
<version>${virtualan.version}</version>
|
|
230
|
-
</dependency>
|
|
231
|
-
<!-- HyperSQL DB -->
|
|
232
|
-
<dependency>
|
|
233
|
-
<groupId>org.hsqldb</groupId>
|
|
234
|
-
<artifactId>hsqldb</artifactId>
|
|
235
|
-
</dependency>
|
|
236
|
-
<!-- END Virtual Service API support -->
|
|
237
|
-
{{/virtualService}}
|
|
238
|
-
{{#hateoas}}
|
|
239
|
-
<!-- Spring HATEOAS -->
|
|
240
|
-
<dependency>
|
|
241
|
-
<groupId>org.springframework.boot</groupId>
|
|
242
|
-
<artifactId>spring-boot-starter-hateoas</artifactId>
|
|
243
|
-
</dependency>
|
|
244
|
-
{{/hateoas}}
|
|
245
|
-
{{#lombok}}
|
|
246
|
-
<dependency>
|
|
247
|
-
<groupId>org.projectlombok</groupId>
|
|
248
|
-
<artifactId>lombok</artifactId>
|
|
249
|
-
<optional>true</optional>
|
|
250
|
-
</dependency>
|
|
251
|
-
{{/lombok}}
|
|
252
|
-
<dependency>
|
|
253
|
-
<groupId>com.fasterxml.jackson.core</groupId>
|
|
254
|
-
<artifactId>jackson-databind</artifactId>
|
|
255
|
-
</dependency>
|
|
256
|
-
<dependency>
|
|
257
|
-
<groupId>org.springframework.boot</groupId>
|
|
258
|
-
<artifactId>spring-boot-starter-test</artifactId>
|
|
259
|
-
<scope>test</scope>
|
|
260
|
-
</dependency>
|
|
261
|
-
</dependencies>
|
|
262
|
-
</project>
|
|
@@ -1,272 +0,0 @@
|
|
|
1
|
-
{{! attach sources }}
|
|
2
|
-
<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/maven-v4_0_0.xsd">
|
|
3
|
-
<modelVersion>4.0.0</modelVersion>
|
|
4
|
-
<groupId>{{groupId}}</groupId>
|
|
5
|
-
<artifactId>{{artifactId}}</artifactId>
|
|
6
|
-
<packaging>jar</packaging>
|
|
7
|
-
<name>{{artifactId}}</name>
|
|
8
|
-
<version>{{artifactVersion}}</version>
|
|
9
|
-
<properties>
|
|
10
|
-
<java.version>1.8</java.version>
|
|
11
|
-
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
12
|
-
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
13
|
-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
14
|
-
{{#springFoxDocumentationProvider}}
|
|
15
|
-
<springfox.version>2.9.2</springfox.version>
|
|
16
|
-
{{/springFoxDocumentationProvider}}
|
|
17
|
-
{{#springDocDocumentationProvider}}
|
|
18
|
-
<springdoc.version>1.6.14</springdoc.version>
|
|
19
|
-
{{/springDocDocumentationProvider}}
|
|
20
|
-
{{^springFoxDocumentationProvider}}
|
|
21
|
-
{{^springDocDocumentationProvider}}
|
|
22
|
-
{{#swagger1AnnotationLibrary}}
|
|
23
|
-
<swagger-annotations.version>1.6.6</swagger-annotations.version>
|
|
24
|
-
{{/swagger1AnnotationLibrary}}
|
|
25
|
-
{{#swagger2AnnotationLibrary}}
|
|
26
|
-
<swagger-annotations.version>2.2.7</swagger-annotations.version>
|
|
27
|
-
{{/swagger2AnnotationLibrary}}
|
|
28
|
-
{{/springDocDocumentationProvider}}
|
|
29
|
-
{{/springFoxDocumentationProvider}}
|
|
30
|
-
{{#virtualService}}
|
|
31
|
-
<virtualan.version>2.5.2</virtualan.version>
|
|
32
|
-
{{/virtualService}}
|
|
33
|
-
{{#useSwaggerUI}}
|
|
34
|
-
<swagger-ui.version>5.3.1</swagger-ui.version>
|
|
35
|
-
{{/useSwaggerUI}}
|
|
36
|
-
</properties>
|
|
37
|
-
{{#parentOverridden}}
|
|
38
|
-
<parent>
|
|
39
|
-
<groupId>{{{parentGroupId}}}</groupId>
|
|
40
|
-
<artifactId>{{{parentArtifactId}}}</artifactId>
|
|
41
|
-
<version>{{{parentVersion}}}</version>
|
|
42
|
-
</parent>
|
|
43
|
-
{{/parentOverridden}}
|
|
44
|
-
{{^parentOverridden}}
|
|
45
|
-
<parent>
|
|
46
|
-
<groupId>org.springframework.boot</groupId>
|
|
47
|
-
<artifactId>spring-boot-starter-parent</artifactId>
|
|
48
|
-
<version>{{#springFoxDocumentationProvider}}2.5.14{{/springFoxDocumentationProvider}}{{^springFoxDocumentationProvider}}2.7.15{{/springFoxDocumentationProvider}}</version>
|
|
49
|
-
<relativePath/> <!-- lookup parent from repository -->
|
|
50
|
-
</parent>
|
|
51
|
-
{{/parentOverridden}}
|
|
52
|
-
<build>
|
|
53
|
-
<sourceDirectory>src/main/java</sourceDirectory>
|
|
54
|
-
{{#interfaceOnly}}
|
|
55
|
-
<plugins>
|
|
56
|
-
<plugin>
|
|
57
|
-
<groupId>org.apache.maven.plugins</groupId>
|
|
58
|
-
<artifactId>maven-source-plugin</artifactId>
|
|
59
|
-
<executions>
|
|
60
|
-
<execution>
|
|
61
|
-
<id>attach-sources</id>
|
|
62
|
-
<goals>
|
|
63
|
-
<goal>jar</goal>
|
|
64
|
-
</goals>
|
|
65
|
-
</execution>
|
|
66
|
-
</executions>
|
|
67
|
-
</plugin>
|
|
68
|
-
</plugins>
|
|
69
|
-
{{/interfaceOnly}}
|
|
70
|
-
{{^interfaceOnly}}
|
|
71
|
-
<plugins>
|
|
72
|
-
<plugin>
|
|
73
|
-
<groupId>org.springframework.boot</groupId>
|
|
74
|
-
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
75
|
-
<configuration>
|
|
76
|
-
{{#classifier}}
|
|
77
|
-
<classifier>{{{classifier}}}</classifier>
|
|
78
|
-
{{/classifier}}
|
|
79
|
-
{{#lombok}}
|
|
80
|
-
<excludes>
|
|
81
|
-
<exclude>
|
|
82
|
-
<groupId>org.projectlombok</groupId>
|
|
83
|
-
<artifactId>lombok</artifactId>
|
|
84
|
-
</exclude>
|
|
85
|
-
</excludes>
|
|
86
|
-
{{/lombok}}
|
|
87
|
-
</configuration>
|
|
88
|
-
</plugin>
|
|
89
|
-
{{#apiFirst}}
|
|
90
|
-
<plugin>
|
|
91
|
-
<groupId>org.openapitools</groupId>
|
|
92
|
-
<artifactId>openapi-generator-maven-plugin</artifactId>
|
|
93
|
-
<version>{{{generatorVersion}}}</version>
|
|
94
|
-
<executions>
|
|
95
|
-
<execution>
|
|
96
|
-
<goals>
|
|
97
|
-
<goal>generate</goal>
|
|
98
|
-
</goals>
|
|
99
|
-
<configuration>
|
|
100
|
-
<inputSpec>src/main/resources/openapi.yaml</inputSpec>
|
|
101
|
-
<generatorName>spring</generatorName>
|
|
102
|
-
<apiPackage>{{{apiPackage}}}</apiPackage>
|
|
103
|
-
<modelPackage>{{{modelPackage}}}</modelPackage>
|
|
104
|
-
<generateSupportingFiles>false</generateSupportingFiles>
|
|
105
|
-
{{#modelNamePrefix}}
|
|
106
|
-
<modelNamePrefix>{{{.}}}</modelNamePrefix>
|
|
107
|
-
{{/modelNamePrefix}}
|
|
108
|
-
{{#modelNameSuffix}}
|
|
109
|
-
<modelNameSuffix>{{{.}}}</modelNameSuffix>
|
|
110
|
-
{{/modelNameSuffix}}
|
|
111
|
-
<configOptions>
|
|
112
|
-
{{#configOptions}}
|
|
113
|
-
<{{left}}>{{right}}</{{left}}>
|
|
114
|
-
{{/configOptions}}
|
|
115
|
-
</configOptions>
|
|
116
|
-
</configuration>
|
|
117
|
-
</execution>
|
|
118
|
-
</executions>
|
|
119
|
-
</plugin>
|
|
120
|
-
{{/apiFirst}}
|
|
121
|
-
</plugins>
|
|
122
|
-
{{/interfaceOnly}}
|
|
123
|
-
</build>
|
|
124
|
-
<dependencies>
|
|
125
|
-
<dependency>
|
|
126
|
-
<groupId>org.springframework.boot</groupId>
|
|
127
|
-
<artifactId>spring-boot-starter-web{{#reactive}}flux{{/reactive}}</artifactId>
|
|
128
|
-
</dependency>
|
|
129
|
-
<dependency>
|
|
130
|
-
<groupId>org.springframework.data</groupId>
|
|
131
|
-
<artifactId>spring-data-commons</artifactId>
|
|
132
|
-
</dependency>
|
|
133
|
-
{{#springDocDocumentationProvider}}
|
|
134
|
-
<!--SpringDoc dependencies -->
|
|
135
|
-
{{#useSwaggerUI}}
|
|
136
|
-
<dependency>
|
|
137
|
-
<groupId>org.springdoc</groupId>
|
|
138
|
-
<artifactId>springdoc-openapi-{{#reactive}}webflux-{{/reactive}}ui</artifactId>
|
|
139
|
-
<version>${springdoc.version}</version>
|
|
140
|
-
</dependency>
|
|
141
|
-
{{/useSwaggerUI}}
|
|
142
|
-
{{^useSwaggerUI}}
|
|
143
|
-
<dependency>
|
|
144
|
-
<groupId>org.springdoc</groupId>
|
|
145
|
-
<artifactId>springdoc-openapi-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-core</artifactId>
|
|
146
|
-
<version>${springdoc.version}</version>
|
|
147
|
-
</dependency>
|
|
148
|
-
{{/useSwaggerUI}}
|
|
149
|
-
{{/springDocDocumentationProvider}}
|
|
150
|
-
{{#springFoxDocumentationProvider}}
|
|
151
|
-
<!--SpringFox dependencies -->
|
|
152
|
-
<dependency>
|
|
153
|
-
<groupId>io.springfox</groupId>
|
|
154
|
-
<artifactId>springfox-swagger2</artifactId>
|
|
155
|
-
<version>${springfox.version}</version>
|
|
156
|
-
</dependency>
|
|
157
|
-
{{/springFoxDocumentationProvider}}
|
|
158
|
-
{{#useSwaggerUI}}
|
|
159
|
-
{{^springDocDocumentationProvider}}
|
|
160
|
-
<dependency>
|
|
161
|
-
<groupId>org.webjars</groupId>
|
|
162
|
-
<artifactId>swagger-ui</artifactId>
|
|
163
|
-
<version>${swagger-ui.version}</version>
|
|
164
|
-
</dependency>
|
|
165
|
-
<dependency>
|
|
166
|
-
<groupId>org.webjars</groupId>
|
|
167
|
-
<artifactId>webjars-locator-core</artifactId>
|
|
168
|
-
</dependency>
|
|
169
|
-
{{/springDocDocumentationProvider}}
|
|
170
|
-
{{/useSwaggerUI}}
|
|
171
|
-
{{^springFoxDocumentationProvider}}
|
|
172
|
-
{{^springDocDocumentationProvider}}
|
|
173
|
-
{{#swagger1AnnotationLibrary}}
|
|
174
|
-
<dependency>
|
|
175
|
-
<groupId>io.swagger</groupId>
|
|
176
|
-
<artifactId>swagger-annotations</artifactId>
|
|
177
|
-
<version>${swagger-annotations.version}</version>
|
|
178
|
-
</dependency>
|
|
179
|
-
{{/swagger1AnnotationLibrary}}
|
|
180
|
-
{{#swagger2AnnotationLibrary}}
|
|
181
|
-
<dependency>
|
|
182
|
-
<groupId>io.swagger.core.v3</groupId>
|
|
183
|
-
<artifactId>swagger-annotations</artifactId>
|
|
184
|
-
<version>${swagger-annotations.version}</version>
|
|
185
|
-
</dependency>
|
|
186
|
-
{{/swagger2AnnotationLibrary}}
|
|
187
|
-
{{/springDocDocumentationProvider}}
|
|
188
|
-
{{/springFoxDocumentationProvider}}
|
|
189
|
-
<!-- @Nullable annotation -->
|
|
190
|
-
<dependency>
|
|
191
|
-
<groupId>com.google.code.findbugs</groupId>
|
|
192
|
-
<artifactId>jsr305</artifactId>
|
|
193
|
-
<version>3.0.2</version>
|
|
194
|
-
</dependency>
|
|
195
|
-
<dependency>
|
|
196
|
-
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
197
|
-
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
198
|
-
</dependency>
|
|
199
|
-
{{#withXml}}
|
|
200
|
-
<!-- XML processing: Jackson -->
|
|
201
|
-
<dependency>
|
|
202
|
-
<groupId>jakarta.xml.bind</groupId>
|
|
203
|
-
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
204
|
-
</dependency>
|
|
205
|
-
<dependency>
|
|
206
|
-
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
207
|
-
<artifactId>jackson-dataformat-xml</artifactId>
|
|
208
|
-
</dependency>
|
|
209
|
-
{{/withXml}}
|
|
210
|
-
<dependency>
|
|
211
|
-
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
212
|
-
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
213
|
-
</dependency>
|
|
214
|
-
{{#joda}}
|
|
215
|
-
<dependency>
|
|
216
|
-
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
217
|
-
<artifactId>jackson-datatype-joda</artifactId>
|
|
218
|
-
</dependency>
|
|
219
|
-
{{/joda}}
|
|
220
|
-
{{#openApiNullable}}
|
|
221
|
-
<dependency>
|
|
222
|
-
<groupId>org.openapitools</groupId>
|
|
223
|
-
<artifactId>jackson-databind-nullable</artifactId>
|
|
224
|
-
<version>0.2.6</version>
|
|
225
|
-
</dependency>
|
|
226
|
-
{{/openApiNullable}}
|
|
227
|
-
{{#useBeanValidation}}
|
|
228
|
-
<!-- Bean Validation API support -->
|
|
229
|
-
<dependency>
|
|
230
|
-
<groupId>org.springframework.boot</groupId>
|
|
231
|
-
<artifactId>spring-boot-starter-validation</artifactId>
|
|
232
|
-
</dependency>
|
|
233
|
-
{{/useBeanValidation}}
|
|
234
|
-
{{#virtualService}}
|
|
235
|
-
<!-- START Virtual Service API support -->
|
|
236
|
-
<dependency>
|
|
237
|
-
<groupId>io.virtualan</groupId>
|
|
238
|
-
<artifactId>virtualan-plugin</artifactId>
|
|
239
|
-
<version>${virtualan.version}</version>
|
|
240
|
-
</dependency>
|
|
241
|
-
<!-- HyperSQL DB -->
|
|
242
|
-
<dependency>
|
|
243
|
-
<groupId>org.hsqldb</groupId>
|
|
244
|
-
<artifactId>hsqldb</artifactId>
|
|
245
|
-
</dependency>
|
|
246
|
-
<!-- END Virtual Service API support -->
|
|
247
|
-
{{/virtualService}}
|
|
248
|
-
{{#hateoas}}
|
|
249
|
-
<!-- Spring HATEOAS -->
|
|
250
|
-
<dependency>
|
|
251
|
-
<groupId>org.springframework.boot</groupId>
|
|
252
|
-
<artifactId>spring-boot-starter-hateoas</artifactId>
|
|
253
|
-
</dependency>
|
|
254
|
-
{{/hateoas}}
|
|
255
|
-
{{#lombok}}
|
|
256
|
-
<dependency>
|
|
257
|
-
<groupId>org.projectlombok</groupId>
|
|
258
|
-
<artifactId>lombok</artifactId>
|
|
259
|
-
<optional>true</optional>
|
|
260
|
-
</dependency>
|
|
261
|
-
{{/lombok}}
|
|
262
|
-
<dependency>
|
|
263
|
-
<groupId>com.fasterxml.jackson.core</groupId>
|
|
264
|
-
<artifactId>jackson-databind</artifactId>
|
|
265
|
-
</dependency>
|
|
266
|
-
<dependency>
|
|
267
|
-
<groupId>org.springframework.boot</groupId>
|
|
268
|
-
<artifactId>spring-boot-starter-test</artifactId>
|
|
269
|
-
<scope>test</scope>
|
|
270
|
-
</dependency>
|
|
271
|
-
</dependencies>
|
|
272
|
-
</project>
|