Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 343b5bd

Browse files
authored
1.0.15 release (#320)
* 1.0.15 release * regenerated docs
1 parent 2c876fc commit 343b5bd

File tree

122 files changed

+148
-165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+148
-165
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ from the Introducing Spring Auto REST Docs talk at Spring IO 2017 are also avail
2424

2525
[Current 1.0.14 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.14/docs/index.html) reference guide.
2626

27-
Latest master [1.0.15-SNAPSHOT](https://scacap.github.io/spring-auto-restdocs) reference guide.
27+
Latest master [1.0.15](https://scacap.github.io/spring-auto-restdocs) reference guide.
2828

2929
Older releases:
3030
[1.0.13](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.13/docs/index.html),

docs/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@
425425
<h1>Spring Auto REST Docs</h1>
426426
<div class="details">
427427
<span id="author" class="author">Scalable Capital</span><br>
428-
<span id="revnumber">version 1.0.14</span>
428+
<span id="revnumber">version 1.0.15</span>
429429
</div>
430430
<div id="toc" class="toc2">
431431
<div id="toctitle">Table of Contents</div>
@@ -595,7 +595,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
595595
<pre class="highlightjs highlight"><code class="language-xml" data-lang="xml">&lt;dependency&gt;
596596
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
597597
&lt;artifactId&gt;spring-auto-restdocs-core&lt;/artifactId&gt;
598-
&lt;version&gt;1.0.14&lt;/version&gt;
598+
&lt;version&gt;1.0.15&lt;/version&gt;
599599
&lt;scope&gt;test&lt;/scope&gt; <i class="conum" data-value="1"></i><b>(1)</b>
600600
&lt;/dependency&gt;
601601

@@ -632,7 +632,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
632632
&lt;docletArtifact&gt;
633633
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
634634
&lt;artifactId&gt;spring-auto-restdocs-json-doclet&lt;/artifactId&gt;
635-
&lt;version&gt;1.0.14&lt;/version&gt;
635+
&lt;version&gt;1.0.15&lt;/version&gt;
636636
&lt;/docletArtifact&gt;
637637
&lt;destDir&gt;generated-javadoc-json&lt;/destDir&gt; <i class="conum" data-value="3"></i><b>(3)</b>
638638
&lt;reportOutputDirectory&gt;${project.build.directory}&lt;/reportOutputDirectory&gt; <i class="conum" data-value="3"></i><b>(3)</b>
@@ -677,8 +677,8 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
677677
}
678678

679679
dependencies {
680-
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.14' <i class="conum" data-value="1"></i><b>(1)</b>
681-
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.14'
680+
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.15' <i class="conum" data-value="1"></i><b>(1)</b>
681+
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.15'
682682
}
683683

684684
task jsonDoclet(type: Javadoc, dependsOn: compileJava) {
@@ -1853,8 +1853,8 @@ <h4 id="contributing-building-build"><a class="link" href="#contributing-buildin
18531853
</div>
18541854
<div id="footer">
18551855
<div id="footer-text">
1856-
Version 1.0.14<br>
1857-
Last updated 2018-08-21 17:44:22 CEST
1856+
Version 1.0.15<br>
1857+
Last updated 2019-05-06 10:32:57 CEST
18581858
</div>
18591859
</div>
18601860
<link rel="stylesheet" href="highlight/styles/github.min.css">

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>capital.scalable</groupId>
77
<artifactId>spring-auto-restdocs-parent</artifactId>
8-
<version>1.0.15-SNAPSHOT</version>
8+
<version>1.0.15</version>
99
<packaging>pom</packaging>
1010

1111
<name>Spring Auto REST Docs Parent POM</name>

spring-auto-restdocs-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>capital.scalable</groupId>
99
<artifactId>spring-auto-restdocs-parent</artifactId>
10-
<version>1.0.15-SNAPSHOT</version>
10+
<version>1.0.15</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

spring-auto-restdocs-core/src/main/java/capital/scalable/restdocs/AutoDocumentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Spring Auto REST Docs Core
44
* %%
5-
* Copyright (C) 2015 - 2018 Scalable Capital GmbH
5+
* Copyright (C) 2015 - 2019 Scalable Capital GmbH
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

spring-auto-restdocs-core/src/main/java/capital/scalable/restdocs/OperationAttributeHelper.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Spring Auto REST Docs Core
44
* %%
5-
* Copyright (C) 2015 - 2018 Scalable Capital GmbH
5+
* Copyright (C) 2015 - 2019 Scalable Capital GmbH
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.
@@ -19,8 +19,7 @@
1919
*/
2020
package capital.scalable.restdocs;
2121

22-
import static org.springframework.restdocs.generate.RestDocumentationGenerator
23-
.ATTRIBUTE_NAME_DEFAULT_SNIPPETS;
22+
import static org.springframework.restdocs.generate.RestDocumentationGenerator.ATTRIBUTE_NAME_DEFAULT_SNIPPETS;
2423
import static org.springframework.util.ReflectionUtils.findField;
2524
import static org.springframework.util.ReflectionUtils.getField;
2625
import static org.springframework.util.ReflectionUtils.makeAccessible;

spring-auto-restdocs-core/src/main/java/capital/scalable/restdocs/SnippetRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Spring Auto REST Docs Core
44
* %%
5-
* Copyright (C) 2015 - 2018 Scalable Capital GmbH
5+
* Copyright (C) 2015 - 2019 Scalable Capital GmbH
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

spring-auto-restdocs-core/src/main/java/capital/scalable/restdocs/constraints/ConstraintAndGroupDescriptionResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Spring Auto REST Docs Core
44
* %%
5-
* Copyright (C) 2015 - 2018 Scalable Capital GmbH
5+
* Copyright (C) 2015 - 2019 Scalable Capital GmbH
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

spring-auto-restdocs-core/src/main/java/capital/scalable/restdocs/constraints/ConstraintReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Spring Auto REST Docs Core
44
* %%
5-
* Copyright (C) 2015 - 2018 Scalable Capital GmbH
5+
* Copyright (C) 2015 - 2019 Scalable Capital GmbH
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

spring-auto-restdocs-core/src/main/java/capital/scalable/restdocs/constraints/ConstraintReaderImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Spring Auto REST Docs Core
44
* %%
5-
* Copyright (C) 2015 - 2018 Scalable Capital GmbH
5+
* Copyright (C) 2015 - 2019 Scalable Capital GmbH
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)