File tree 14 files changed +363
-19
lines changed
test-javalin-jsonb/src/main/resources/public
test-jex/src/main/resources/public
14 files changed +363
-19
lines changed Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >io.avaje</groupId >
6
6
<artifactId >avaje-http-parent</artifactId >
7
- <version >1.28-SNAPSHOT </version >
7
+ <version >1.28</version >
8
8
<relativePath >..</relativePath >
9
9
</parent >
10
10
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >io.avaje</groupId >
6
6
<artifactId >avaje-http-parent</artifactId >
7
- <version >1.28-SNAPSHOT </version >
7
+ <version >1.28</version >
8
8
<relativePath >..</relativePath >
9
9
</parent >
10
10
11
11
<groupId >io.avaje</groupId >
12
12
<artifactId >avaje-http-client-gson</artifactId >
13
- <version >1.28-SNAPSHOT </version >
13
+ <version >1.28</version >
14
14
15
15
<dependencies >
16
16
23
23
<dependency >
24
24
<groupId >io.avaje</groupId >
25
25
<artifactId >avaje-http-client</artifactId >
26
- <version >1.28-SNAPSHOT </version >
26
+ <version >1.28</version >
27
27
<scope >provided</scope >
28
28
</dependency >
29
29
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >io.avaje</groupId >
6
6
<artifactId >avaje-http-parent</artifactId >
7
- <version >1.28-SNAPSHOT </version >
7
+ <version >1.28</version >
8
8
<relativePath >..</relativePath >
9
9
</parent >
10
10
11
11
<groupId >io.avaje</groupId >
12
12
<artifactId >avaje-http-client</artifactId >
13
- <version >1.28-SNAPSHOT </version >
13
+ <version >1.28</version >
14
14
15
15
<scm >
16
16
<
developerConnection >scm:git:
[email protected] :avaje/avaje-http-client.git</
developerConnection >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >io.avaje</groupId >
7
7
<artifactId >avaje-http-parent</artifactId >
8
- <version >1.28-SNAPSHOT </version >
8
+ <version >1.28</version >
9
9
<relativePath >..</relativePath >
10
10
</parent >
11
11
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >io.avaje</groupId >
9
9
<artifactId >avaje-http-parent</artifactId >
10
- <version >1.28-SNAPSHOT </version >
10
+ <version >1.28</version >
11
11
<relativePath >..</relativePath >
12
12
</parent >
13
13
23
23
<dependency >
24
24
<groupId >io.avaje</groupId >
25
25
<artifactId >avaje-http-api</artifactId >
26
- <version >1.28-SNAPSHOT </version >
26
+ <version >1.28</version >
27
27
<optional >true</optional >
28
28
<scope >provided</scope >
29
29
</dependency >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >io.avaje</groupId >
9
9
<artifactId >avaje-http-parent</artifactId >
10
- <version >1.28-SNAPSHOT </version >
10
+ <version >1.28</version >
11
11
<relativePath >..</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >io.avaje</groupId >
9
9
<artifactId >avaje-http-parent</artifactId >
10
- <version >1.28-SNAPSHOT </version >
10
+ <version >1.28</version >
11
11
<relativePath >..</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >io.avaje</groupId >
9
9
<artifactId >avaje-http-parent</artifactId >
10
- <version >1.28-SNAPSHOT </version >
10
+ <version >1.28</version >
11
11
<relativePath >..</relativePath >
12
12
</parent >
13
13
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<artifactId >avaje-http-parent</artifactId >
5
5
<groupId >io.avaje</groupId >
6
- <version >1.28-SNAPSHOT </version >
6
+ <version >1.28</version >
7
7
</parent >
8
8
<modelVersion >4.0.0</modelVersion >
9
9
Original file line number Diff line number Diff line change 9
9
10
10
<groupId >io.avaje</groupId >
11
11
<artifactId >avaje-http-parent</artifactId >
12
- <version >1.28-SNAPSHOT </version >
12
+ <version >1.28</version >
13
13
<packaging >pom</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 20
20
<jackson .version>2.14.1</jackson .version>
21
21
<jex .version>2.5</jex .version>
22
22
<avaje-inject .version>8.12-RC3</avaje-inject .version>
23
- <avaje-http-version >1.28-SNAPSHOT </avaje-http-version >
23
+ <avaje-http-version >1.28</avaje-http-version >
24
24
</properties >
25
25
26
26
<modules >
Original file line number Diff line number Diff line change 1
1
{
2
2
"openapi" : " 3.0.1" ,
3
3
"info" : {
4
- "title" : " Example service" ,
4
+ "title" : " Example service showing off the Path extension method of controller " ,
5
5
"description" : " Example Javalin controllers with Java and Maven" ,
6
6
"version" : " "
7
7
},
8
8
"tags" : [
9
9
{
10
10
"name" : " tag1" ,
11
- "description" : " it's somethin "
11
+ "description" : " this is added to openapi tags "
12
12
},
13
13
{
14
14
"name" : " tag1" ,
15
- "description" : " this is added to openapi tags "
15
+ "description" : " it's somethin "
16
16
}
17
17
],
18
18
"paths" : {
1139
1139
}
1140
1140
}
1141
1141
},
1142
+ "/test/enumForm" : {
1143
+ "get" : {
1144
+ "tags" : [
1145
+
1146
+ ],
1147
+ "summary" : " " ,
1148
+ "description" : " " ,
1149
+ "requestBody" : {
1150
+ "content" : {
1151
+ "application/x-www-form-urlencoded" : {
1152
+ "schema" : {
1153
+ "type" : " object" ,
1154
+ "properties" : {
1155
+ "s" : {
1156
+ "type" : " string"
1157
+ },
1158
+ "type" : {
1159
+ "$ref" : " #/components/schemas/ServerType"
1160
+ }
1161
+ }
1162
+ }
1163
+ }
1164
+ },
1165
+ "required" : true
1166
+ },
1167
+ "responses" : {
1168
+ "200" : {
1169
+ "description" : " " ,
1170
+ "content" : {
1171
+ "application/json" : {
1172
+ "schema" : {
1173
+ "type" : " string"
1174
+ }
1175
+ }
1176
+ }
1177
+ }
1178
+ }
1179
+ }
1180
+ },
1181
+ "/test/enumFormParam" : {
1182
+ "get" : {
1183
+ "tags" : [
1184
+
1185
+ ],
1186
+ "summary" : " " ,
1187
+ "description" : " " ,
1188
+ "requestBody" : {
1189
+ "content" : {
1190
+ "application/x-www-form-urlencoded" : {
1191
+ "schema" : {
1192
+ "type" : " object" ,
1193
+ "properties" : {
1194
+ "s" : {
1195
+ "type" : " string"
1196
+ },
1197
+ "type" : {
1198
+ "$ref" : " #/components/schemas/ServerType"
1199
+ }
1200
+ }
1201
+ }
1202
+ }
1203
+ },
1204
+ "required" : true
1205
+ },
1206
+ "responses" : {
1207
+ "200" : {
1208
+ "description" : " " ,
1209
+ "content" : {
1210
+ "application/json" : {
1211
+ "schema" : {
1212
+ "type" : " string"
1213
+ }
1214
+ }
1215
+ }
1216
+ }
1217
+ }
1218
+ }
1219
+ },
1220
+ "/test/enumQuery" : {
1221
+ "get" : {
1222
+ "tags" : [
1223
+
1224
+ ],
1225
+ "summary" : " " ,
1226
+ "description" : " " ,
1227
+ "parameters" : [
1228
+ {
1229
+ "name" : " type" ,
1230
+ "in" : " query" ,
1231
+ "schema" : {
1232
+ "$ref" : " #/components/schemas/ServerType"
1233
+ }
1234
+ }
1235
+ ],
1236
+ "responses" : {
1237
+ "200" : {
1238
+ "description" : " " ,
1239
+ "content" : {
1240
+ "application/json" : {
1241
+ "schema" : {
1242
+ "type" : " string"
1243
+ }
1244
+ }
1245
+ }
1246
+ }
1247
+ }
1248
+ }
1249
+ },
1250
+ "/test/enumQuery2" : {
1251
+ "get" : {
1252
+ "tags" : [
1253
+
1254
+ ],
1255
+ "summary" : " " ,
1256
+ "description" : " " ,
1257
+ "parameters" : [
1258
+ {
1259
+ "name" : " type" ,
1260
+ "in" : " query" ,
1261
+ "schema" : {
1262
+ "type" : " array" ,
1263
+ "items" : {
1264
+ "$ref" : " #/components/schemas/ServerType"
1265
+ }
1266
+ }
1267
+ }
1268
+ ],
1269
+ "responses" : {
1270
+ "200" : {
1271
+ "description" : " " ,
1272
+ "content" : {
1273
+ "application/json" : {
1274
+ "schema" : {
1275
+ "type" : " string"
1276
+ }
1277
+ }
1278
+ }
1279
+ }
1280
+ }
1281
+ }
1282
+ },
1283
+ "/test/enumQueryImplied" : {
1284
+ "post" : {
1285
+ "tags" : [
1286
+
1287
+ ],
1288
+ "summary" : " " ,
1289
+ "description" : " " ,
1290
+ "parameters" : [
1291
+ {
1292
+ "name" : " s" ,
1293
+ "in" : " query" ,
1294
+ "schema" : {
1295
+ "type" : " string"
1296
+ }
1297
+ },
1298
+ {
1299
+ "name" : " type" ,
1300
+ "in" : " query" ,
1301
+ "schema" : {
1302
+ "$ref" : " #/components/schemas/ServerType"
1303
+ }
1304
+ }
1305
+ ],
1306
+ "responses" : {
1307
+ "201" : {
1308
+ "description" : " " ,
1309
+ "content" : {
1310
+ "application/json" : {
1311
+ "schema" : {
1312
+ "type" : " string"
1313
+ }
1314
+ }
1315
+ }
1316
+ }
1317
+ }
1318
+ }
1319
+ },
1142
1320
"/test/form" : {
1143
1321
"post" : {
1144
1322
"tags" : [
1309
1487
}
1310
1488
}
1311
1489
},
1490
+ "/test/mapTest" : {
1491
+ "get" : {
1492
+ "tags" : [
1493
+
1494
+ ],
1495
+ "summary" : " " ,
1496
+ "description" : " " ,
1497
+ "responses" : {
1498
+ "200" : {
1499
+ "description" : " " ,
1500
+ "content" : {
1501
+ "application/json" : {
1502
+ "schema" : {
1503
+ "type" : " string"
1504
+ }
1505
+ }
1506
+ }
1507
+ }
1508
+ }
1509
+ }
1510
+ },
1312
1511
"/test/person" : {
1313
1512
"post" : {
1314
1513
"tags" : [
1619
1818
"maxLength" : 100 ,
1620
1819
"type" : " string" ,
1621
1820
"format" : " email"
1821
+ },
1822
+ "addresses" : {
1823
+ "type" : " array" ,
1824
+ "items" : {
1825
+ "type" : " string"
1826
+ }
1622
1827
}
1623
1828
}
1624
1829
},
1698
1903
}
1699
1904
}
1700
1905
},
1906
+ "ServerType" : {
1907
+ "type" : " object"
1908
+ },
1701
1909
"byte" : {
1702
1910
"type" : " object"
1703
1911
}
You can’t perform that action at this time.
0 commit comments