Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>swagger-petstore-v31</artifactId>
<packaging>war</packaging>
<name>Swagger Petstore V3.1</name>
<version>1.0.9-SNAPSHOT</version>
<version>1.0.9</version>
<url>https://github.com/swagger-api/swagger-petstore</url>
<scm>
<connection>scm:git:[email protected]:swagger-api/swagger-petstore.git</connection>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
info = @Info(
title = "Swagger Petstore - OpenAPI 3.1",
summary = "Pet Store 3.1",
version = "1.0.9-SNAPSHOT",
version = "1.0.9",
description = "This is a sample Pet Store Server based on the OpenAPI 3.1 specification.\nYou can find out more about\nSwagger at [https://swagger.io](https://swagger.io).",
termsOfService = "https://swagger.io/terms/",
contact = @Contact (
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/code-first/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name" : "Apache 2.0",
"url" : "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"version" : "1.0.9-SNAPSHOT",
"version" : "1.0.9",
"summary" : "Pet Store 3.1",
"x-namespace" : "swagger"
},
Expand Down Expand Up @@ -157,7 +157,7 @@
},
"/pet/{petId}" : {
"get" : {
"tags" : [ "pets" ],
"tags" : [ "pet" ],
"summary" : "Find pet by it's identifier.",
"description" : "Returns a pet when 0 < ID <= 10. ID > 10 or non-integers will simulate API error conditions.",
"operationId" : "getPetById",
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/code-first/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 1.0.9-SNAPSHOT
version: 1.0.9
summary: Pet Store 3.1
x-namespace: swagger
externalDocs:
Expand Down Expand Up @@ -126,7 +126,7 @@ paths:
/pet/{petId}:
get:
tags:
- pets
- pet
summary: Find pet by it's identifier.
description: Returns a pet when 0 < ID <= 10. ID > 10 or non-integers will
simulate API error conditions.
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/design-first/petstore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ info:
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 1.0.9-SNAPSHOT
version: 1.0.9
x-namespace: Swagger
externalDocs:
description: Find out more about Swagger
Expand Down
Loading