@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.
@@ -1,187 +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
- </properties>
31
- {{#parentOverridden}}
32
- <parent>
33
- <groupId>{{{parentGroupId}}}</groupId>
34
- <artifactId>{{{parentArtifactId}}}</artifactId>
35
- <version>{{{parentVersion}}}</version>
36
- </parent>
37
- {{/parentOverridden}}
38
- {{^parentOverridden}}
39
- <parent>
40
- <groupId>org.springframework.boot</groupId>
41
- <artifactId>spring-boot-starter-parent</artifactId>
42
- <version>2.7.15</version>
43
- <relativePath/> <!-- lookup parent from repository -->
44
- </parent>
45
- {{/parentOverridden}}
46
- <build>
47
- <sourceDirectory>src/main/java</sourceDirectory>
48
- <plugins>
49
- <plugin>
50
- <groupId>org.apache.maven.plugins</groupId>
51
- <artifactId>maven-source-plugin</artifactId>
52
- <executions>
53
- <execution>
54
- <id>attach-sources</id>
55
- <goals>
56
- <goal>jar</goal>
57
- </goals>
58
- </execution>
59
- </executions>
60
- </plugin>
61
- </plugins>
62
- </build>
63
-
64
- {{^parentOverridden}}
65
- <dependencyManagement>
66
- <dependencies>
67
- <dependency>
68
- <groupId>org.springframework.cloud</groupId>
69
- <artifactId>spring-cloud-starter-parent</artifactId>
70
- <version>2021.0.5</version>
71
- <type>pom</type>
72
- <scope>import</scope>
73
- </dependency>
74
- </dependencies>
75
- </dependencyManagement>
76
-
77
- {{/parentOverridden}}
78
- <dependencies>
79
- {{#springDocDocumentationProvider}}
80
- <!--SpringDoc dependencies -->
81
- <dependency>
82
- <groupId>org.springdoc</groupId>
83
- <artifactId>springdoc-openapi-ui</artifactId>
84
- <version>${springdoc.version}</version>
85
- </dependency>
86
- {{/springDocDocumentationProvider}}
87
- {{#springFoxDocumentationProvider}}
88
- <!--SpringFox dependencies -->
89
- <dependency>
90
- <groupId>io.springfox</groupId>
91
- <artifactId>springfox-swagger2</artifactId>
92
- <version>${springfox.version}</version>
93
- </dependency>
94
- {{/springFoxDocumentationProvider}}
95
- {{^springFoxDocumentationProvider}}
96
- {{^springDocDocumentationProvider}}
97
- {{#swagger1AnnotationLibrary}}
98
- <dependency>
99
- <groupId>io.swagger</groupId>
100
- <artifactId>swagger-annotations</artifactId>
101
- <version>${swagger-annotations.version}</version>
102
- </dependency>
103
- {{/swagger1AnnotationLibrary}}
104
- {{#swagger2AnnotationLibrary}}
105
- <dependency>
106
- <groupId>io.swagger.core.v3</groupId>
107
- <artifactId>swagger-annotations</artifactId>
108
- <version>${swagger-annotations.version}</version>
109
- </dependency>
110
- {{/swagger2AnnotationLibrary}}
111
- {{/springDocDocumentationProvider}}
112
- {{/springFoxDocumentationProvider}}
113
- <!-- @Nullable annotation -->
114
- <dependency>
115
- <groupId>com.google.code.findbugs</groupId>
116
- <artifactId>jsr305</artifactId>
117
- {{^parentOverridden}}
118
- <version>3.0.2</version>
119
- {{/parentOverridden}}
120
- </dependency>
121
- <dependency>
122
- <groupId>org.springframework.cloud</groupId>
123
- <artifactId>spring-cloud-starter-openfeign</artifactId>
124
- </dependency>
125
- <dependency>
126
- <groupId>org.springframework.security</groupId>
127
- <artifactId>spring-security-oauth2-client</artifactId>
128
- {{^parentOverridden}}
129
- <version>5.7.8</version>
130
- {{/parentOverridden}}
131
- </dependency>
132
- {{#withXml}}
133
- <!-- XML processing: Jackson -->
134
- <dependency>
135
- <groupId>com.fasterxml.jackson.dataformat</groupId>
136
- <artifactId>jackson-dataformat-xml</artifactId>
137
- </dependency>
138
- {{/withXml}}
139
- <dependency>
140
- <groupId>com.fasterxml.jackson.datatype</groupId>
141
- <artifactId>jackson-datatype-jsr310</artifactId>
142
- </dependency>
143
- {{#joda}}
144
- <dependency>
145
- <groupId>com.fasterxml.jackson.datatype</groupId>
146
- <artifactId>jackson-datatype-joda</artifactId>
147
- </dependency>
148
- {{/joda}}
149
- {{#openApiNullable}}
150
- <dependency>
151
- <groupId>org.openapitools</groupId>
152
- <artifactId>jackson-databind-nullable</artifactId>
153
- {{^parentOverridden}}
154
- <version>0.2.6</version>
155
- {{/parentOverridden}}
156
- </dependency>
157
- {{/openApiNullable}}
158
- {{#hateoas}}
159
- <dependency>
160
- <groupId>org.springframework.boot</groupId>
161
- <artifactId>spring-boot-starter-hateoas</artifactId>
162
- </dependency>
163
- {{/hateoas}}
164
- {{#lombok}}
165
- <dependency>
166
- <groupId>org.projectlombok</groupId>
167
- <artifactId>lombok</artifactId>
168
- <optional>true</optional>
169
- </dependency>
170
- {{/lombok}}
171
- {{#useBeanValidation}}
172
- <dependency>
173
- <groupId>org.springframework.boot</groupId>
174
- <artifactId>spring-boot-starter-validation</artifactId>
175
- </dependency>
176
- {{/useBeanValidation}}
177
- <dependency>
178
- <groupId>org.springframework.data</groupId>
179
- <artifactId>spring-data-commons</artifactId>
180
- </dependency>
181
- <dependency>
182
- <groupId>org.springframework.boot</groupId>
183
- <artifactId>spring-boot-starter-test</artifactId>
184
- <scope>test</scope>
185
- </dependency>
186
- </dependencies>
187
- </project>
@@ -1,246 +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"
3
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
- <modelVersion>4.0.0</modelVersion>
5
- <groupId>{{groupId}}</groupId>
6
- <artifactId>{{artifactId}}</artifactId>
7
- <packaging>jar</packaging>
8
- <name>{{artifactId}}</name>
9
- <version>{{artifactVersion}}</version>
10
- <properties>{{#reactive}}
11
- <kotlinx-coroutines.version>1.6.1
12
- </kotlinx-coroutines.version>{{/reactive}}{{#springDocDocumentationProvider}}{{#useSwaggerUI}}
13
- <springdoc-openapi.version>2.2.0
14
- </springdoc-openapi.version>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
15
- <springfox-swagger2.version>2.9.2
16
- </springfox-swagger2.version>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
17
- <swagger-ui.version>5.3.1
18
- </swagger-ui.version>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
19
- <swagger-annotations.version>1.6.6
20
- </swagger-annotations.version>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
21
- <swagger-annotations.version>2.2.15
22
- </swagger-annotations.version>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
23
- <findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
24
- <jakarta-annotation.version>2.1.0</jakarta-annotation.version>
25
- <kotlin-test-junit5.version>1.7.10</kotlin-test-junit5.version>
26
-
27
- <kotlin.version>1.7.10</kotlin.version>
28
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29
- </properties>
30
- <parent>
31
- <groupId>org.springframework.boot</groupId>
32
- <artifactId>spring-boot-starter-parent</artifactId>
33
- <version>3.1.3</version>
34
- </parent>
35
- <dependencyManagement>
36
- <dependencies>
37
- <dependency>
38
- <groupId>org.springframework.cloud</groupId>
39
- <artifactId>spring-cloud-starter-parent</artifactId>
40
- <version>2021.0.5</version>
41
- <type>pom</type>
42
- <scope>import</scope>
43
- </dependency>
44
- </dependencies>
45
- </dependencyManagement>
46
- <repositories>
47
- <repository>
48
- <id>repository.spring.milestone</id>
49
- <name>Spring Milestone Repository</name>
50
- <url>https://repo.spring.io/milestone</url>
51
- </repository>
52
- </repositories>
53
- <pluginRepositories>
54
- <pluginRepository>
55
- <id>spring-milestones</id>
56
- <url>https://repo.spring.io/milestone</url>
57
- </pluginRepository>
58
- </pluginRepositories>
59
- <build>
60
- <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
61
- <plugins>{{^interfaceOnly}}
62
- <plugin>
63
- <groupId>org.springframework.boot</groupId>
64
- <artifactId>spring-boot-maven-plugin</artifactId>
65
- <executions>
66
- <execution>
67
- <goals>
68
- <goal>repackage</goal>
69
- </goals>
70
- </execution>
71
- </executions>
72
- </plugin>{{/interfaceOnly}}
73
- <plugin>
74
- <artifactId>kotlin-maven-plugin</artifactId>
75
- <groupId>org.jetbrains.kotlin</groupId>
76
- <version>${kotlin.version}</version>
77
- <configuration>
78
- <compilerPlugins>
79
- <plugin>spring</plugin>
80
- </compilerPlugins>
81
- <jvmTarget>17</jvmTarget>
82
- </configuration>
83
- <executions>
84
- <execution>
85
- <id>compile</id>
86
- <phase>compile</phase>
87
- <goals>
88
- <goal>compile</goal>
89
- </goals>
90
- </execution>
91
- <execution>
92
- <id>test-compile</id>
93
- <phase>test-compile</phase>
94
- <goals>
95
- <goal>test-compile</goal>
96
- </goals>
97
- </execution>
98
- </executions>
99
- <dependencies>
100
- <dependency>
101
- <groupId>org.jetbrains.kotlin</groupId>
102
- <artifactId>kotlin-maven-allopen</artifactId>
103
- <version>${kotlin.version}</version>
104
- </dependency>
105
- </dependencies>
106
- </plugin>
107
- <plugin>
108
- <groupId>org.apache.maven.plugins</groupId>
109
- <artifactId>maven-source-plugin</artifactId>
110
- <executions>
111
- <execution>
112
- <id>attach-sources</id>
113
- <goals>
114
- <goal>jar</goal>
115
- </goals>
116
- </execution>
117
- </executions>
118
- </plugin>
119
- </plugins>
120
- </build>
121
- <dependencies>
122
- <dependency>
123
- <groupId>org.jetbrains.kotlin</groupId>
124
- <artifactId>kotlin-stdlib-jdk8</artifactId>
125
- <version>${kotlin.version}</version>
126
- </dependency>
127
- <dependency>
128
- <groupId>org.jetbrains.kotlin</groupId>
129
- <artifactId>kotlin-reflect</artifactId>
130
- <version>${kotlin.version}</version>
131
- </dependency>{{^reactive}}
132
- <dependency>
133
- <groupId>org.springframework.boot</groupId>
134
- <artifactId>spring-boot-starter-web</artifactId>
135
- </dependency>{{/reactive}}{{#reactive}}
136
- <dependency>
137
- <groupId>org.springframework.boot</groupId>
138
- <artifactId>spring-boot-starter-webflux</artifactId>
139
- </dependency>
140
- <dependency>
141
- <groupId>org.jetbrains.kotlinx</groupId>
142
- <artifactId>kotlinx-coroutines-core</artifactId>
143
- <version>${kotlinx-coroutines.version}</version>
144
- </dependency>
145
- <dependency>
146
- <groupId>org.jetbrains.kotlinx</groupId>
147
- <artifactId>kotlinx-coroutines-reactor</artifactId>
148
- <version>${kotlinx-coroutines.version}</version>
149
- </dependency>{{/reactive}}
150
-
151
- {{#springDocDocumentationProvider}}
152
- <!--SpringDoc dependencies -->{{#useSwaggerUI}}
153
- <dependency>
154
- <groupId>org.springdoc</groupId>
155
- <artifactId>springdoc-openapi-starter-{{#reactive}}
156
- webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-ui
157
- </artifactId>
158
- <version>${springdoc-openapi.version}</version>
159
- </dependency>{{/useSwaggerUI}}{{^useSwaggerUI}}
160
- <dependency>
161
- <groupId>org.springdoc</groupId>
162
- <artifactId>springdoc-openapi-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-core
163
- </artifactId>
164
- <version>${springdoc-openapi.version}</version>
165
- </dependency>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
166
- <!--SpringFox dependencies -->
167
- <dependency>
168
- <groupId>io.springfox</groupId>
169
- <artifactId>springfox-swagger2</artifactId>
170
- <version>${springfox-swagger2.version}</version>
171
- </dependency>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
172
- <dependency>
173
- <groupId>org.webjars</groupId>
174
- <artifactId>swagger-ui</artifactId>
175
- <version>${swagger-ui.version}</version>
176
- </dependency>
177
- <dependency>
178
- <groupId>org.webjars</groupId>
179
- <artifactId>webjars-locator-core</artifactId>
180
- </dependency>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
181
- <dependency>
182
- <groupId>io.swagger</groupId>
183
- <artifactId>swagger-annotations</artifactId>
184
- <version>${swagger-annotations.version}</version>
185
- </dependency>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
186
- <dependency>
187
- <groupId>io.swagger.core.v3</groupId>
188
- <artifactId>swagger-annotations</artifactId>
189
- <version>${swagger-annotations.version}</version>
190
- </dependency>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
191
-
192
- <!-- @Nullable annotation -->
193
- <dependency>
194
- <groupId>com.google.code.findbugs</groupId>
195
- <artifactId>jsr305</artifactId>
196
- <version>${findbugs-jsr305.version}</version>
197
- </dependency>
198
- <dependency>
199
- <groupId>org.springframework.cloud</groupId>
200
- <artifactId>spring-cloud-starter-openfeign</artifactId>
201
- </dependency>
202
- {{#hasAuthMethods}}
203
- <dependency>
204
- <groupId>org.springframework.cloud</groupId>
205
- <artifactId>spring-cloud-starter-oauth2</artifactId>
206
- {{^parentOverridden}}
207
- <version>2.2.5.RELEASE</version>
208
- {{/parentOverridden}}
209
- </dependency>
210
- {{/hasAuthMethods}}
211
- <dependency>
212
- <groupId>com.fasterxml.jackson.dataformat</groupId>
213
- <artifactId>jackson-dataformat-yaml</artifactId>
214
- </dependency>
215
- <dependency>
216
- <groupId>com.fasterxml.jackson.dataformat</groupId>
217
- <artifactId>jackson-dataformat-xml</artifactId>
218
- </dependency>
219
- <dependency>
220
- <groupId>com.fasterxml.jackson.datatype</groupId>
221
- <artifactId>jackson-datatype-jsr310</artifactId>
222
- </dependency>
223
- <dependency>
224
- <groupId>com.fasterxml.jackson.module</groupId>
225
- <artifactId>jackson-module-kotlin</artifactId>
226
- </dependency>
227
- {{#useBeanValidation}}
228
- <!-- Bean Validation API support -->
229
- <dependency>
230
- <groupId>jakarta.validation</groupId>
231
- <artifactId>jakarta.validation-api</artifactId>
232
- </dependency>{{/useBeanValidation}}
233
- <dependency>
234
- <groupId>jakarta.annotation</groupId>
235
- <artifactId>jakarta.annotation-api</artifactId>
236
- <version>${jakarta-annotation.version}</version>
237
- <scope>provided</scope>
238
- </dependency>
239
- <dependency>
240
- <groupId>org.jetbrains.kotlin</groupId>
241
- <artifactId>kotlin-test-junit5</artifactId>
242
- <version>${kotlin-test-junit5.version}</version>
243
- <scope>test</scope>
244
- </dependency>
245
- </dependencies>
246
- </project>
@@ -1,223 +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>{{#reactive}}
10
- <kotlinx-coroutines.version>1.6.1</kotlinx-coroutines.version>{{/reactive}}{{#springDocDocumentationProvider}}{{#useSwaggerUI}}
11
- <springdoc-openapi.version>1.6.8</springdoc-openapi.version>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
12
- <springfox-swagger2.version>2.9.2</springfox-swagger2.version>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
13
- <swagger-ui.version>4.10.3</swagger-ui.version>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
14
- <swagger-annotations.version>1.6.6</swagger-annotations.version>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
15
- <swagger-annotations.version>2.2.0</swagger-annotations.version>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
16
- <findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
17
- <javax-annotation.version>1.3.2</javax-annotation.version>
18
- <kotlin-test-junit5.version>1.6.21</kotlin-test-junit5.version>
19
-
20
- <kotlin.version>1.6.21</kotlin.version>
21
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22
- </properties>
23
- <parent>
24
- <groupId>org.springframework.boot</groupId>
25
- <artifactId>spring-boot-starter-parent</artifactId>
26
- <version>2.7.15</version>
27
- </parent>
28
- <dependencyManagement>
29
- <dependencies>
30
- <dependency>
31
- <groupId>org.springframework.cloud</groupId>
32
- <artifactId>spring-cloud-starter-parent</artifactId>
33
- <version>2021.0.5</version>
34
- <type>pom</type>
35
- <scope>import</scope>
36
- </dependency>
37
- </dependencies>
38
- </dependencyManagement>
39
- <build>
40
- <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
41
- <plugins>{{^interfaceOnly}}
42
- <plugin>
43
- <groupId>org.springframework.boot</groupId>
44
- <artifactId>spring-boot-maven-plugin</artifactId>
45
- <executions>
46
- <execution>
47
- <goals>
48
- <goal>repackage</goal>
49
- </goals>
50
- </execution>
51
- </executions>
52
- </plugin>{{/interfaceOnly}}
53
- <plugin>
54
- <artifactId>kotlin-maven-plugin</artifactId>
55
- <groupId>org.jetbrains.kotlin</groupId>
56
- <version>${kotlin.version}</version>
57
- <configuration>
58
- <compilerPlugins>
59
- <plugin>spring</plugin>
60
- </compilerPlugins>
61
- <jvmTarget>1.8</jvmTarget>
62
- </configuration>
63
- <executions>
64
- <execution>
65
- <id>compile</id>
66
- <phase>compile</phase>
67
- <goals>
68
- <goal>compile</goal>
69
- </goals>
70
- </execution>
71
- <execution>
72
- <id>test-compile</id>
73
- <phase>test-compile</phase>
74
- <goals>
75
- <goal>test-compile</goal>
76
- </goals>
77
- </execution>
78
- </executions>
79
- <dependencies>
80
- <dependency>
81
- <groupId>org.jetbrains.kotlin</groupId>
82
- <artifactId>kotlin-maven-allopen</artifactId>
83
- <version>${kotlin.version}</version>
84
- </dependency>
85
- </dependencies>
86
- </plugin>
87
- <plugin>
88
- <groupId>org.apache.maven.plugins</groupId>
89
- <artifactId>maven-source-plugin</artifactId>
90
- <executions>
91
- <execution>
92
- <id>attach-sources</id>
93
- <goals>
94
- <goal>jar</goal>
95
- </goals>
96
- </execution>
97
- </executions>
98
- </plugin>
99
- </plugins>
100
- </build>
101
- <dependencies>
102
- <dependency>
103
- <groupId>org.jetbrains.kotlin</groupId>
104
- <artifactId>kotlin-stdlib-jdk8</artifactId>
105
- <version>${kotlin.version}</version>
106
- </dependency>
107
- <dependency>
108
- <groupId>org.jetbrains.kotlin</groupId>
109
- <artifactId>kotlin-reflect</artifactId>
110
- <version>${kotlin.version}</version>
111
- </dependency>{{^reactive}}
112
- <dependency>
113
- <groupId>org.springframework.boot</groupId>
114
- <artifactId>spring-boot-starter-web</artifactId>
115
- </dependency>{{/reactive}}{{#reactive}}
116
- <dependency>
117
- <groupId>org.springframework.boot</groupId>
118
- <artifactId>spring-boot-starter-webflux</artifactId>
119
- </dependency>
120
- <dependency>
121
- <groupId>org.jetbrains.kotlinx</groupId>
122
- <artifactId>kotlinx-coroutines-core</artifactId>
123
- <version>${kotlinx-coroutines.version}</version>
124
- </dependency>
125
- <dependency>
126
- <groupId>org.jetbrains.kotlinx</groupId>
127
- <artifactId>kotlinx-coroutines-reactor</artifactId>
128
- <version>${kotlinx-coroutines.version}</version>
129
- </dependency>{{/reactive}}
130
-
131
- {{#springDocDocumentationProvider}}
132
- <!--SpringDoc dependencies -->{{#useSwaggerUI}}
133
- <dependency>
134
- <groupId>org.springdoc</groupId>
135
- <artifactId>springdoc-openapi-{{#reactive}}webflux-{{/reactive}}ui</artifactId>
136
- <version>${springdoc-openapi.version}</version>
137
- </dependency>{{/useSwaggerUI}}{{^useSwaggerUI}}
138
- <dependency>
139
- <groupId>org.springdoc</groupId>
140
- <artifactId>springdoc-openapi-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-core</artifactId>
141
- <version>${springdoc-openapi.version}</version>
142
- </dependency>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
143
- <!--SpringFox dependencies -->
144
- <dependency>
145
- <groupId>io.springfox</groupId>
146
- <artifactId>springfox-swagger2</artifactId>
147
- <version>${springfox-swagger2.version}</version>
148
- </dependency>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
149
- <dependency>
150
- <groupId>org.webjars</groupId>
151
- <artifactId>swagger-ui</artifactId>
152
- <version>${swagger-ui.version}</version>
153
- </dependency>
154
- <dependency>
155
- <groupId>org.webjars</groupId>
156
- <artifactId>webjars-locator-core</artifactId>
157
- </dependency>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
158
- <dependency>
159
- <groupId>io.swagger</groupId>
160
- <artifactId>swagger-annotations</artifactId>
161
- <version>${swagger-annotations.version}</version>
162
- </dependency>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
163
- <dependency>
164
- <groupId>io.swagger.core.v3</groupId>
165
- <artifactId>swagger-annotations</artifactId>
166
- <version>${swagger-annotations.version}</version>
167
- </dependency>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
168
-
169
- <!-- @Nullable annotation -->
170
- <dependency>
171
- <groupId>com.google.code.findbugs</groupId>
172
- <artifactId>jsr305</artifactId>
173
- <version>${findbugs-jsr305.version}</version>
174
- </dependency>
175
- <dependency>
176
- <groupId>org.springframework.cloud</groupId>
177
- <artifactId>spring-cloud-starter-openfeign</artifactId>
178
- </dependency>
179
- {{#hasAuthMethods}}
180
- <dependency>
181
- <groupId>org.springframework.cloud</groupId>
182
- <artifactId>spring-cloud-starter-oauth2</artifactId>
183
- {{^parentOverridden}}
184
- <version>2.2.5.RELEASE</version>
185
- {{/parentOverridden}}
186
- </dependency>
187
- {{/hasAuthMethods}}
188
- <dependency>
189
- <groupId>com.fasterxml.jackson.dataformat</groupId>
190
- <artifactId>jackson-dataformat-yaml</artifactId>
191
- </dependency>
192
- <dependency>
193
- <groupId>com.fasterxml.jackson.dataformat</groupId>
194
- <artifactId>jackson-dataformat-xml</artifactId>
195
- </dependency>
196
- <dependency>
197
- <groupId>com.fasterxml.jackson.datatype</groupId>
198
- <artifactId>jackson-datatype-jsr310</artifactId>
199
- </dependency>
200
- <dependency>
201
- <groupId>com.fasterxml.jackson.module</groupId>
202
- <artifactId>jackson-module-kotlin</artifactId>
203
- </dependency>
204
- {{#useBeanValidation}}
205
- <!-- Bean Validation API support -->
206
- <dependency>
207
- <groupId>javax.validation</groupId>
208
- <artifactId>validation-api</artifactId>
209
- </dependency>{{/useBeanValidation}}
210
- <dependency>
211
- <groupId>javax.annotation</groupId>
212
- <artifactId>javax.annotation-api</artifactId>
213
- <version>${javax-annotation.version}</version>
214
- <scope>provided</scope>
215
- </dependency>
216
- <dependency>
217
- <groupId>org.jetbrains.kotlin</groupId>
218
- <artifactId>kotlin-test-junit5</artifactId>
219
- <version>${kotlin-test-junit5.version}</version>
220
- <scope>test</scope>
221
- </dependency>
222
- </dependencies>
223
- </project>