From f898993856709887e5b49cab01c0be6b87ce0a31 Mon Sep 17 00:00:00 2001 From: Biju Kunjummen Date: Fri, 1 Dec 2017 10:50:06 -0800 Subject: [PATCH] Fix the order of version and classifier (#475) Fixes a minor typo - order of version and classifier in javadoc. --- .../cloud/contract/stubrunner/spring/StubRunnerProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/spring/StubRunnerProperties.java b/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/spring/StubRunnerProperties.java index a850020aa0..afeb8e6561 100644 --- a/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/spring/StubRunnerProperties.java +++ b/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/spring/StubRunnerProperties.java @@ -50,7 +50,7 @@ public class StubRunnerProperties { private Resource repositoryRoot; /** - * The ids of the stubs to run in "ivy" notation ([groupId]:artifactId:[classifier]:[version][:port]). + * The ids of the stubs to run in "ivy" notation ([groupId]:artifactId:[version]:[classifier][:port]). * {@code groupId}, {@code classifier}, {@code version} and {@code port} can be optional. */ private String[] ids = new String[0];