Updated the docs with stub runner artifact ids

This commit is contained in:
Marcin Grzejszczak
2016-06-20 13:57:11 +02:00
parent 3b60f6121a
commit b24547872a
4 changed files with 6 additions and 6 deletions

View File

@@ -20,11 +20,11 @@ and a messaging implementation:
[source,groovy,indent=0]
----
// for Apache Camel
compile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-messaging-camel:${verifierVersion}"
compile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-camel:${verifierVersion}"
// for Spring Integration
compile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-messaging-integration:${verifierVersion}"
compile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-integration:${verifierVersion}"
// for Spring Cloud Stream
compile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-messaging-stream:${verifierVersion}"
compile "org.springframework.cloud.contract:spring-cloud-contract-stub-runner-stream:${verifierVersion}"
----
Build a fat-jar and you're ready to go!

View File

@@ -13,7 +13,7 @@ To use it you have to add the following dependency to your project (example for
[source,groovy,indent=0]
----
testCompile "org.springframework.cloud.contract:stub-runner-messaging-camel:${verifierVersion}"
testCompile "org.springframework.cloud.contract:stub-runner-camel:${verifierVersion}"
----
==== Examples

View File

@@ -13,7 +13,7 @@ To use it you have to add the following dependency to your project (example for
[source,groovy,indent=0]
----
testCompile "org.springframework.cloud.contract:stub-runner-messaging-integration:${verifierVersion}"
testCompile "org.springframework.cloud.contract:stub-runner-integration:${verifierVersion}"
----
==== Examples

View File

@@ -14,7 +14,7 @@ To use it you have to add the following dependency to your project (example for
[source,groovy,indent=0]
----
testCompile "org.springframework.cloud.contract:stub-runner-messaging-stream:${verifierVersion}"
testCompile "org.springframework.cloud.contract:stub-runner-stream:${verifierVersion}"
----
==== Examples