@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,213 +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>2.2.0</springdoc-openapi.version>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
12
- <springfox-swagger2.version>2.9.2</springfox-swagger2.version>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
13
- <swagger-ui.version>5.3.1</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.15</swagger-annotations.version>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
16
- <findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
17
- <jakarta-annotation.version>2.1.0</jakarta-annotation.version>
18
- <kotlin-test-junit5.version>1.7.10</kotlin-test-junit5.version>
19
-
20
- <kotlin.version>1.7.10</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>3.1.3</version>
27
- </parent>
28
- <repositories>
29
- <repository>
30
- <id>repository.spring.milestone</id>
31
- <name>Spring Milestone Repository</name>
32
- <url>https://repo.spring.io/milestone</url>
33
- </repository>
34
- </repositories>
35
- <pluginRepositories>
36
- <pluginRepository>
37
- <id>spring-milestones</id>
38
- <url>https://repo.spring.io/milestone</url>
39
- </pluginRepository>
40
- </pluginRepositories>
41
- <build>
42
- <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
43
- <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
44
- <plugins>{{^interfaceOnly}}
45
- <plugin>
46
- <groupId>org.springframework.boot</groupId>
47
- <artifactId>spring-boot-maven-plugin</artifactId>
48
- <executions>
49
- <execution>
50
- <goals>
51
- <goal>repackage</goal>
52
- </goals>
53
- </execution>
54
- </executions>
55
- </plugin>{{/interfaceOnly}}
56
- <plugin>
57
- <artifactId>kotlin-maven-plugin</artifactId>
58
- <groupId>org.jetbrains.kotlin</groupId>
59
- <version>${kotlin.version}</version>
60
- <configuration>
61
- <compilerPlugins>
62
- <plugin>spring</plugin>
63
- </compilerPlugins>
64
- <jvmTarget>17</jvmTarget>
65
- </configuration>
66
- <executions>
67
- <execution>
68
- <id>compile</id>
69
- <phase>compile</phase>
70
- <goals>
71
- <goal>compile</goal>
72
- </goals>
73
- </execution>
74
- <execution>
75
- <id>test-compile</id>
76
- <phase>test-compile</phase>
77
- <goals>
78
- <goal>test-compile</goal>
79
- </goals>
80
- </execution>
81
- </executions>
82
- <dependencies>
83
- <dependency>
84
- <groupId>org.jetbrains.kotlin</groupId>
85
- <artifactId>kotlin-maven-allopen</artifactId>
86
- <version>${kotlin.version}</version>
87
- </dependency>
88
- </dependencies>
89
- </plugin>
90
- <plugin>
91
- <groupId>org.apache.maven.plugins</groupId>
92
- <artifactId>maven-source-plugin</artifactId>
93
- <executions>
94
- <execution>
95
- <id>attach-sources</id>
96
- <goals>
97
- <goal>jar</goal>
98
- </goals>
99
- </execution>
100
- </executions>
101
- </plugin>
102
- </plugins>
103
- </build>
104
- <dependencies>
105
- <dependency>
106
- <groupId>org.jetbrains.kotlin</groupId>
107
- <artifactId>kotlin-stdlib-jdk8</artifactId>
108
- <version>${kotlin.version}</version>
109
- </dependency>
110
- <dependency>
111
- <groupId>org.jetbrains.kotlin</groupId>
112
- <artifactId>kotlin-reflect</artifactId>
113
- <version>${kotlin.version}</version>
114
- </dependency>{{^reactive}}
115
- <dependency>
116
- <groupId>org.springframework.boot</groupId>
117
- <artifactId>spring-boot-starter-web</artifactId>
118
- </dependency>{{/reactive}}{{#reactive}}
119
- <dependency>
120
- <groupId>org.springframework.boot</groupId>
121
- <artifactId>spring-boot-starter-webflux</artifactId>
122
- </dependency>
123
- <dependency>
124
- <groupId>org.jetbrains.kotlinx</groupId>
125
- <artifactId>kotlinx-coroutines-core</artifactId>
126
- <version>${kotlinx-coroutines.version}</version>
127
- </dependency>
128
- <dependency>
129
- <groupId>org.jetbrains.kotlinx</groupId>
130
- <artifactId>kotlinx-coroutines-reactor</artifactId>
131
- <version>${kotlinx-coroutines.version}</version>
132
- </dependency>{{/reactive}}
133
-
134
- {{#springDocDocumentationProvider}}
135
- <!--SpringDoc dependencies -->{{#useSwaggerUI}}
136
- <dependency>
137
- <groupId>org.springdoc</groupId>
138
- <artifactId>springdoc-openapi-starter-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-ui</artifactId>
139
- <version>${springdoc-openapi.version}</version>
140
- </dependency>{{/useSwaggerUI}}{{^useSwaggerUI}}
141
- <dependency>
142
- <groupId>org.springdoc</groupId>
143
- <artifactId>springdoc-openapi-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-core</artifactId>
144
- <version>${springdoc-openapi.version}</version>
145
- </dependency>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
146
- <!--SpringFox dependencies -->
147
- <dependency>
148
- <groupId>io.springfox</groupId>
149
- <artifactId>springfox-swagger2</artifactId>
150
- <version>${springfox-swagger2.version}</version>
151
- </dependency>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
152
- <dependency>
153
- <groupId>org.webjars</groupId>
154
- <artifactId>swagger-ui</artifactId>
155
- <version>${swagger-ui.version}</version>
156
- </dependency>
157
- <dependency>
158
- <groupId>org.webjars</groupId>
159
- <artifactId>webjars-locator-core</artifactId>
160
- </dependency>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
161
- <dependency>
162
- <groupId>io.swagger</groupId>
163
- <artifactId>swagger-annotations</artifactId>
164
- <version>${swagger-annotations.version}</version>
165
- </dependency>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
166
- <dependency>
167
- <groupId>io.swagger.core.v3</groupId>
168
- <artifactId>swagger-annotations</artifactId>
169
- <version>${swagger-annotations.version}</version>
170
- </dependency>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
171
-
172
- <!-- @Nullable annotation -->
173
- <dependency>
174
- <groupId>com.google.code.findbugs</groupId>
175
- <artifactId>jsr305</artifactId>
176
- <version>${findbugs-jsr305.version}</version>
177
- </dependency>
178
- <dependency>
179
- <groupId>com.fasterxml.jackson.dataformat</groupId>
180
- <artifactId>jackson-dataformat-yaml</artifactId>
181
- </dependency>
182
- <dependency>
183
- <groupId>com.fasterxml.jackson.dataformat</groupId>
184
- <artifactId>jackson-dataformat-xml</artifactId>
185
- </dependency>
186
- <dependency>
187
- <groupId>com.fasterxml.jackson.datatype</groupId>
188
- <artifactId>jackson-datatype-jsr310</artifactId>
189
- </dependency>
190
- <dependency>
191
- <groupId>com.fasterxml.jackson.module</groupId>
192
- <artifactId>jackson-module-kotlin</artifactId>
193
- </dependency>
194
- {{#useBeanValidation}}
195
- <!-- Bean Validation API support -->
196
- <dependency>
197
- <groupId>jakarta.validation</groupId>
198
- <artifactId>jakarta.validation-api</artifactId>
199
- </dependency>{{/useBeanValidation}}
200
- <dependency>
201
- <groupId>jakarta.annotation</groupId>
202
- <artifactId>jakarta.annotation-api</artifactId>
203
- <version>${jakarta-annotation.version}</version>
204
- <scope>provided</scope>
205
- </dependency>
206
- <dependency>
207
- <groupId>org.jetbrains.kotlin</groupId>
208
- <artifactId>kotlin-test-junit5</artifactId>
209
- <version>${kotlin-test-junit5.version}</version>
210
- <scope>test</scope>
211
- </dependency>
212
- </dependencies>
213
- </project>
@@ -1,200 +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
- <build>
29
- <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
30
- <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
31
- <plugins>{{^interfaceOnly}}
32
- <plugin>
33
- <groupId>org.springframework.boot</groupId>
34
- <artifactId>spring-boot-maven-plugin</artifactId>
35
- <executions>
36
- <execution>
37
- <goals>
38
- <goal>repackage</goal>
39
- </goals>
40
- </execution>
41
- </executions>
42
- </plugin>{{/interfaceOnly}}
43
- <plugin>
44
- <artifactId>kotlin-maven-plugin</artifactId>
45
- <groupId>org.jetbrains.kotlin</groupId>
46
- <version>${kotlin.version}</version>
47
- <configuration>
48
- <compilerPlugins>
49
- <plugin>spring</plugin>
50
- </compilerPlugins>
51
- <jvmTarget>1.8</jvmTarget>
52
- </configuration>
53
- <executions>
54
- <execution>
55
- <id>compile</id>
56
- <phase>compile</phase>
57
- <goals>
58
- <goal>compile</goal>
59
- </goals>
60
- </execution>
61
- <execution>
62
- <id>test-compile</id>
63
- <phase>test-compile</phase>
64
- <goals>
65
- <goal>test-compile</goal>
66
- </goals>
67
- </execution>
68
- </executions>
69
- <dependencies>
70
- <dependency>
71
- <groupId>org.jetbrains.kotlin</groupId>
72
- <artifactId>kotlin-maven-allopen</artifactId>
73
- <version>${kotlin.version}</version>
74
- </dependency>
75
- </dependencies>
76
- </plugin>
77
- <plugin>
78
- <groupId>org.apache.maven.plugins</groupId>
79
- <artifactId>maven-source-plugin</artifactId>
80
- <executions>
81
- <execution>
82
- <id>attach-sources</id>
83
- <goals>
84
- <goal>jar</goal>
85
- </goals>
86
- </execution>
87
- </executions>
88
- </plugin>
89
- </plugins>
90
- </build>
91
- <dependencies>
92
- <dependency>
93
- <groupId>org.jetbrains.kotlin</groupId>
94
- <artifactId>kotlin-stdlib-jdk8</artifactId>
95
- <version>${kotlin.version}</version>
96
- </dependency>
97
- <dependency>
98
- <groupId>org.jetbrains.kotlin</groupId>
99
- <artifactId>kotlin-reflect</artifactId>
100
- <version>${kotlin.version}</version>
101
- </dependency>{{^reactive}}
102
- <dependency>
103
- <groupId>org.springframework.boot</groupId>
104
- <artifactId>spring-boot-starter-web</artifactId>
105
- </dependency>{{/reactive}}{{#reactive}}
106
- <dependency>
107
- <groupId>org.springframework.boot</groupId>
108
- <artifactId>spring-boot-starter-webflux</artifactId>
109
- </dependency>
110
- <dependency>
111
- <groupId>org.jetbrains.kotlinx</groupId>
112
- <artifactId>kotlinx-coroutines-core</artifactId>
113
- <version>${kotlinx-coroutines.version}</version>
114
- </dependency>
115
- <dependency>
116
- <groupId>org.jetbrains.kotlinx</groupId>
117
- <artifactId>kotlinx-coroutines-reactor</artifactId>
118
- <version>${kotlinx-coroutines.version}</version>
119
- </dependency>{{/reactive}}
120
-
121
- {{#springDocDocumentationProvider}}
122
- <!--SpringDoc dependencies -->{{#useSwaggerUI}}
123
- <dependency>
124
- <groupId>org.springdoc</groupId>
125
- <artifactId>springdoc-openapi-{{#reactive}}webflux-{{/reactive}}ui</artifactId>
126
- <version>${springdoc-openapi.version}</version>
127
- </dependency>{{/useSwaggerUI}}{{^useSwaggerUI}}
128
- <dependency>
129
- <groupId>org.springdoc</groupId>
130
- <artifactId>springdoc-openapi-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-core</artifactId>
131
- <version>${springdoc-openapi.version}</version>
132
- </dependency>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
133
- <!--SpringFox dependencies -->
134
- <dependency>
135
- <groupId>io.springfox</groupId>
136
- <artifactId>springfox-swagger2</artifactId>
137
- <version>${springfox-swagger2.version}</version>
138
- </dependency>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
139
- <dependency>
140
- <groupId>org.webjars</groupId>
141
- <artifactId>swagger-ui</artifactId>
142
- <version>${swagger-ui.version}</version>
143
- </dependency>
144
- <dependency>
145
- <groupId>org.webjars</groupId>
146
- <artifactId>webjars-locator-core</artifactId>
147
- </dependency>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
148
- <dependency>
149
- <groupId>io.swagger</groupId>
150
- <artifactId>swagger-annotations</artifactId>
151
- <version>${swagger-annotations.version}</version>
152
- </dependency>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
153
- <dependency>
154
- <groupId>io.swagger.core.v3</groupId>
155
- <artifactId>swagger-annotations</artifactId>
156
- <version>${swagger-annotations.version}</version>
157
- </dependency>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
158
-
159
- <!-- @Nullable annotation -->
160
- <dependency>
161
- <groupId>com.google.code.findbugs</groupId>
162
- <artifactId>jsr305</artifactId>
163
- <version>${findbugs-jsr305.version}</version>
164
- </dependency>
165
- <dependency>
166
- <groupId>com.fasterxml.jackson.dataformat</groupId>
167
- <artifactId>jackson-dataformat-yaml</artifactId>
168
- </dependency>
169
- <dependency>
170
- <groupId>com.fasterxml.jackson.dataformat</groupId>
171
- <artifactId>jackson-dataformat-xml</artifactId>
172
- </dependency>
173
- <dependency>
174
- <groupId>com.fasterxml.jackson.datatype</groupId>
175
- <artifactId>jackson-datatype-jsr310</artifactId>
176
- </dependency>
177
- <dependency>
178
- <groupId>com.fasterxml.jackson.module</groupId>
179
- <artifactId>jackson-module-kotlin</artifactId>
180
- </dependency>
181
- {{#useBeanValidation}}
182
- <!-- Bean Validation API support -->
183
- <dependency>
184
- <groupId>javax.validation</groupId>
185
- <artifactId>validation-api</artifactId>
186
- </dependency>{{/useBeanValidation}}
187
- <dependency>
188
- <groupId>javax.annotation</groupId>
189
- <artifactId>javax.annotation-api</artifactId>
190
- <version>${javax-annotation.version}</version>
191
- <scope>provided</scope>
192
- </dependency>
193
- <dependency>
194
- <groupId>org.jetbrains.kotlin</groupId>
195
- <artifactId>kotlin-test-junit5</artifactId>
196
- <version>${kotlin-test-junit5.version}</version>
197
- <scope>test</scope>
198
- </dependency>
199
- </dependencies>
200
- </project>