Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
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
10 changes: 5 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
<pre class="highlightjs highlight"><code class="language-xml" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
&lt;artifactId&gt;spring-auto-restdocs-core&lt;/artifactId&gt;
&lt;version&gt;1.0.10&lt;/version&gt;
&lt;version&gt;1.0.11&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt; <i class="conum" data-value="1"></i><b>(1)</b>
&lt;/dependency&gt;

Expand Down Expand Up @@ -631,7 +631,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
&lt;docletArtifact&gt;
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
&lt;artifactId&gt;spring-auto-restdocs-json-doclet&lt;/artifactId&gt;
&lt;version&gt;1.0.10&lt;/version&gt;
&lt;version&gt;1.0.11&lt;/version&gt;
&lt;/docletArtifact&gt;
&lt;destDir&gt;generated-javadoc-json&lt;/destDir&gt; <i class="conum" data-value="3"></i><b>(3)</b>
&lt;reportOutputDirectory&gt;${project.build.directory}&lt;/reportOutputDirectory&gt; <i class="conum" data-value="3"></i><b>(3)</b>
Expand Down Expand Up @@ -676,8 +676,8 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
}

dependencies {
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.10' <i class="conum" data-value="1"></i><b>(1)</b>
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.10'
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.11' <i class="conum" data-value="1"></i><b>(1)</b>
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.11'
}

task jsonDoclet(type: Javadoc, dependsOn: compileJava) {
Expand Down Expand Up @@ -1840,7 +1840,7 @@ <h4 id="contributing-building-build"><a class="link" href="#contributing-buildin
</div>
<div id="footer">
<div id="footer-text">
Last updated 2018-01-09 13:17:48 CET
Last updated 2018-01-10 11:55:15 CET
</div>
</div>
<link rel="stylesheet" href="highlight/styles/github.min.css">
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
<packaging>pom</packaging>

<name>Spring Auto REST Docs Parent POM</name>
Expand Down
2 changes: 1 addition & 1 deletion spring-auto-restdocs-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions spring-auto-restdocs-docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
<relativePath>..</relativePath>
</parent>

Expand All @@ -18,7 +18,7 @@

<properties>
<docs.dir>${project.basedir}/../docs</docs.dir>
<latestRelease>1.0.10</latestRelease> <!-- change this when releasing 1.0.11-SNAPSHOT -->
<latestRelease>1.0.11</latestRelease> <!-- change this when releasing 1.0.12-SNAPSHOT -->
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion spring-auto-restdocs-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: "org.springframework.boot"
apply plugin: "org.asciidoctor.convert"

group = "capital.scalable"
version = "1.0.11-SNAPSHOT"
version = "1.0.11"

description = """Spring Auto REST Docs Example Project"""

Expand Down
14 changes: 7 additions & 7 deletions spring-auto-restdocs-example/generated-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,7 @@ <h4 id="_example_request"><a class="anchor" href="#_example_request"></a><a clas
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/items' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer d6876398-3ace-4051-bf6f-4d21049d3f6d' \
-H 'Authorization: Bearer 235dfe5d-9ed3-4c49-ab1d-07539b64a2ce' \
-d '{"description":"Hot News"}'</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1359,7 +1359,7 @@ <h4 id="_example_request_2"><a class="anchor" href="#_example_request_2"></a><a
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/items/1' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer d6876398-3ace-4051-bf6f-4d21049d3f6d' \
-H 'Authorization: Bearer 235dfe5d-9ed3-4c49-ab1d-07539b64a2ce' \
-d '{"description":"Hot News"}'</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1465,7 +1465,7 @@ <h4 id="_example_request_3"><a class="anchor" href="#_example_request_3"></a><a
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/items/1' -i -X DELETE \
-H 'Authorization: Bearer d6876398-3ace-4051-bf6f-4d21049d3f6d'</code></pre>
-H 'Authorization: Bearer 235dfe5d-9ed3-4c49-ab1d-07539b64a2ce'</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -1956,13 +1956,13 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
},
"total" : 1,
"totalPages" : 1,
"totalElements" : 1,
"last" : true,
"totalElements" : 1,
"size" : 20,
"number" : 0,
"sort" : null,
"numberOfElements" : 1,
"first" : true
"first" : true,
"numberOfElements" : 1
}</code></pre>
</div>
</div>
Expand Down Expand Up @@ -2537,7 +2537,7 @@ <h4 id="_example_request_response_3"><a class="anchor" href="#_example_request_r
</div>
<div id="footer">
<div id="footer-text">
Last updated 2018-01-09 13:15:28 CET
Last updated 2018-01-10 11:52:27 CET
</div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css">
Expand Down
4 changes: 2 additions & 2 deletions spring-auto-restdocs-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-example</artifactId>
<version>1.0.11-SNAPSHOT</version> <!-- not related to spring-auto-restdocs version -->
<version>1.0.11</version> <!-- not related to spring-auto-restdocs version -->

<name>Spring Auto REST Docs Example Project</name>
<description>Example project for Spring Auto REST Docs</description>
Expand All @@ -36,7 +36,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>capital.scalable.restdocs.example.Application</start-class>
<spring-restdocs.version>1.2.3.RELEASE</spring-restdocs.version>
<spring-auto-restdocs.version>1.0.11-SNAPSHOT</spring-auto-restdocs.version>
<spring-auto-restdocs.version>1.0.11</spring-auto-restdocs.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion spring-auto-restdocs-json-doclet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>1.0.11-SNAPSHOT</version>
<version>1.0.11</version>
<relativePath>..</relativePath>
</parent>

Expand Down