Skip to content

Commit 13c53e2

Browse files
committed
Fixed your problems
1 parent 8fbc889 commit 13c53e2

File tree

5 files changed

+26
-38
lines changed

5 files changed

+26
-38
lines changed

backend/gamelink/api-docs/.openapi-generator-ignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
# For example, you can ignore all files in a docs folder with the file extension .md:
2121
#docs/*.md
2222
# Then explicitly reverse the ignore rule for a single file:
23-
#!docs/README.md
23+
#!docs/README.md
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
829d6aba5455ea9a3b945026351f37b5eb3f1ccb75d31fcb7460da73119811b4
1+
45cd10344636b96fae7690de92c0be12678a46e1c642ec135c694d024f45dc91

backend/gamelink/api-docs/api-docs.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -948,14 +948,14 @@
948948
defs["PageNews"] = {
949949
"type" : "object",
950950
"properties" : {
951-
"totalElements" : {
952-
"type" : "integer",
953-
"format" : "int64"
954-
},
955951
"totalPages" : {
956952
"type" : "integer",
957953
"format" : "int32"
958954
},
955+
"totalElements" : {
956+
"type" : "integer",
957+
"format" : "int64"
958+
},
959959
"size" : {
960960
"type" : "integer",
961961
"format" : "int32"
@@ -994,14 +994,14 @@
994994
defs["PageVideogame"] = {
995995
"type" : "object",
996996
"properties" : {
997-
"totalElements" : {
998-
"type" : "integer",
999-
"format" : "int64"
1000-
},
1001997
"totalPages" : {
1002998
"type" : "integer",
1003999
"format" : "int32"
10041000
},
1001+
"totalElements" : {
1002+
"type" : "integer",
1003+
"format" : "int64"
1004+
},
10051005
"size" : {
10061006
"type" : "integer",
10071007
"format" : "int32"
@@ -1055,10 +1055,10 @@
10551055
"type" : "integer",
10561056
"format" : "int32"
10571057
},
1058-
"paged" : {
1058+
"unpaged" : {
10591059
"type" : "boolean"
10601060
},
1061-
"unpaged" : {
1061+
"paged" : {
10621062
"type" : "boolean"
10631063
}
10641064
}
@@ -1069,10 +1069,10 @@
10691069
"empty" : {
10701070
"type" : "boolean"
10711071
},
1072-
"sorted" : {
1072+
"unsorted" : {
10731073
"type" : "boolean"
10741074
},
1075-
"unsorted" : {
1075+
"sorted" : {
10761076
"type" : "boolean"
10771077
}
10781078
}

backend/gamelink/api-docs/api-docs.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,12 +1008,12 @@ components:
10081008
PageVideogame:
10091009
type: object
10101010
properties:
1011-
totalElements:
1012-
type: integer
1013-
format: int64
10141011
totalPages:
10151012
type: integer
10161013
format: int32
1014+
totalElements:
1015+
type: integer
1016+
format: int64
10171017
size:
10181018
type: integer
10191019
format: int32
@@ -1051,28 +1051,28 @@ components:
10511051
pageNumber:
10521052
type: integer
10531053
format: int32
1054-
paged:
1055-
type: boolean
10561054
unpaged:
10571055
type: boolean
1056+
paged:
1057+
type: boolean
10581058
Sort:
10591059
type: object
10601060
properties:
10611061
empty:
10621062
type: boolean
1063-
sorted:
1064-
type: boolean
10651063
unsorted:
10661064
type: boolean
1065+
sorted:
1066+
type: boolean
10671067
PageNews:
10681068
type: object
10691069
properties:
1070-
totalElements:
1071-
type: integer
1072-
format: int64
10731070
totalPages:
10741071
type: integer
10751072
format: int32
1073+
totalElements:
1074+
type: integer
1075+
format: int64
10761076
size:
10771077
type: integer
10781078
format: int32

backend/gamelink/pom.xml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,11 @@
6464

6565
</dependencies>
6666

67-
<build>
67+
<build>
6868
<plugins>
6969
<plugin>
7070
<groupId>org.springframework.boot</groupId>
7171
<artifactId>spring-boot-maven-plugin</artifactId>
72-
<configuration>
73-
<image>
74-
<env>
75-
<BPE_OVERRIDE_JAVA_TOOL_OPTIONS>
76-
-Xss256K
77-
-XX:ReservedCodeCacheSize=64M
78-
-XX:MaxMetaspaceSize=100000K
79-
-Xmx64M
80-
</BPE_OVERRIDE_JAVA_TOOL_OPTIONS>
81-
</env>
82-
</image>
83-
</configuration>
8472
<executions>
8573
<execution>
8674
<id>pre-integration-test</id>
@@ -114,7 +102,7 @@
114102
</execution>
115103
</executions>
116104
<configuration>
117-
<apiDocsUrl>https://localhost:8443/v3/api-docs.yaml</apiDocsUrl>
105+
<apiDocsUrl>http://localhost:8443/v3/api-docs.yaml</apiDocsUrl>
118106
<outputFileName>api-docs.yaml</outputFileName>
119107
<outputDir>${project.basedir}/api-docs</outputDir>
120108
</configuration>

0 commit comments

Comments
 (0)