Skip to content

Commit

Permalink
Update readme and samples to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mduesterhoeft committed May 20, 2019
1 parent 0ac2c15 commit f4ca57c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ buildscript {
}
dependencies {
//..
classpath("com.epages:restdocs-api-spec-gradle-plugin:0.9.1") //2
classpath("com.epages:restdocs-api-spec-gradle-plugin:0.9.3") //2
}
}
//..
Expand All @@ -103,7 +103,7 @@ repositories { //4
dependencies {
//..
testCompile('com.epages:restdocs-api-spec-mockmvc:0.9.1') //5
testCompile('com.epages:restdocs-api-spec-mockmvc:0.9.3') //5
}
openapi { //6
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.kt3k.gradle.plugin.CoverallsPluginExtension
import pl.allegro.tech.build.axion.release.domain.TagNameSerializationConfig
import pl.allegro.tech.build.axion.release.domain.hooks.HooksConfig
import java.io.File


plugins {
Expand Down Expand Up @@ -124,7 +125,7 @@ configure<CoverallsPluginExtension> {

tasks {
val jacocoMerge by creating(JacocoMerge::class) {
executionData = files(nonSampleProjects.map { File(it.buildDir, "/jacoco/test.exec")})
executionData = files(nonSampleProjects.map { File(it.buildDir, "/jacoco/test.exec") })
doFirst {
executionData = files(executionData.filter { it.exists() })
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.springframework.restdocs:spring-restdocs-webtestclient')
testImplementation('io.projectreactor:reactor-test')
testImplementation('com.epages:restdocs-api-spec:0.9.1')
testImplementation('com.epages:restdocs-api-spec:0.9.3')
}

openapi {
Expand Down
4 changes: 2 additions & 2 deletions samples/restdocs-api-spec-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("com.epages:restdocs-api-spec-gradle-plugin:0.9.1")
classpath("com.epages:restdocs-api-spec-gradle-plugin:0.9.3")
}
}

Expand Down Expand Up @@ -38,7 +38,7 @@ dependencies {
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('org.springframework.restdocs:spring-restdocs-mockmvc')

testCompile('com.epages:restdocs-api-spec-mockmvc:0.9.1')
testCompile('com.epages:restdocs-api-spec-mockmvc:0.9.3')
// testCompile project(':restdocs-api-spec-mockmvc') //enable for depending on the submodule directly
testCompile('com.google.guava:guava:23.0')
}
Expand Down

0 comments on commit f4ca57c

Please sign in to comment.