Skip to content

Commit 78f3351

Browse files
committed
prepare release 1.0.6
1 parent 3ca6a4c commit 78f3351

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM openjdk:8-jre
33
WORKDIR /petstore
44
COPY target/lib/jetty-runner* /petstore/jetty-runner.jar
55
COPY ./run.sh /petstore/
6-
ADD target/swagger-petstore-v2-1.0.5 /petstore/webapp
6+
ADD target/swagger-petstore-v2-1.0.6 /petstore/webapp
77

88
RUN apt-get update
99

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>swagger-petstore-v2</artifactId>
1010
<packaging>war</packaging>
1111
<name>swagger-petstore-v2</name>
12-
<version>1.0.5</version>
12+
<version>1.0.6</version>
1313
<properties>
1414
<maven.compiler.source>1.8</maven.compiler.source>
1515
<maven.compiler.target>1.8</maven.compiler.target>

src/main/webapp/WEB-INF/web.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<servlet-class>io.swagger.jaxrs.config.DefaultJaxrsConfig</servlet-class>
3636
<init-param>
3737
<param-name>api.version</param-name>
38-
<param-value>1.0.5</param-value>
38+
<param-value>1.0.6</param-value>
3939
</init-param>
4040
<init-param>
4141
<param-name>swagger.api.title</param-name>

src/main/webapp/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@
9090
plugins: [
9191
SwaggerUIBundle.plugins.DownloadUrl
9292
],
93-
layout: "StandaloneLayout"
93+
layout: "StandaloneLayout",
94+
queryConfigEnabled: true
9495
})
9596

9697
window.ui = ui

0 commit comments

Comments
 (0)