Skip to content

Commit 37ace44

Browse files
committed
Remove unneeded whitespace from README
1 parent 73b0762 commit 37ace44

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,25 +105,25 @@ The [ResourceSnippet](restdocs-api-spec/src/main/kotlin/com/epages/restdocs/apis
105105
classpath('com.epages:restdocs-api-spec-gradle-plugin:0.9.5') //1.2
106106
}
107107
}
108-
108+
109109
apply plugin: 'com.epages.restdocs-api-spec' //1.3
110-
110+
111111
```
112112
2. Add required dependencies to your tests
113113
* *2.1* add the `jcenter` repository used to resolve the `com.epages:restdocs-api-spec` module of the project.
114114
* *2.2* add the actual `restdocs-api-spec-mockmvc` dependency to the test scope. Use `restdocs-api-spec-restassured` if you use `RestAssured` instead of `MockMvc`.
115-
* *2.3* add configuration options for restdocs-api-spec-gradle-plugin`. See [Gradle plugin configuration](#gradle-plugin-configuration)
115+
* *2.3* add configuration options for restdocs-api-spec-gradle-plugin`. See [Gradle plugin configuration](#gradle-plugin-configuration)
116116
```groovy
117-
117+
118118
repositories { //2.1
119119
jcenter()
120120
}
121-
121+
122122
dependencies {
123123
//..
124124
testCompile('com.epages:restdocs-api-spec-mockmvc:0.9.5') //2.2
125125
}
126-
126+
127127
openapi { //2.3
128128
host = 'localhost:8080'
129129
basePath = '/api'
@@ -133,7 +133,7 @@ The [ResourceSnippet](restdocs-api-spec/src/main/kotlin/com/epages/restdocs/apis
133133
version = '1.0.0'
134134
format = 'json'
135135
}
136-
136+
137137
openapi3 {
138138
server = 'https://localhost:8080'
139139
title = 'My API'
@@ -142,7 +142,7 @@ The [ResourceSnippet](restdocs-api-spec/src/main/kotlin/com/epages/restdocs/apis
142142
version = '0.1.0'
143143
format = 'yaml'
144144
}
145-
145+
146146
postman {
147147
title = 'My API'
148148
version = '0.1.0'

0 commit comments

Comments
 (0)