snapshotCheckSkip javadoc enhancement (#634)
This commit is contained in:
committed by
Marcin Grzejszczak
parent
1541ae9486
commit
1078ae8072
@@ -261,7 +261,7 @@ closure to set it up.
|
||||
* *contractsMode*: Specifies the mode of downloading contracts (whether the
|
||||
JAR is available offline, remotely etc.)
|
||||
* *contractsSnapshotCheckSkip*: If set to `true` will not assert whether the
|
||||
downloaded stubs / contract JAR was downloaded from a remote location or a local one
|
||||
downloaded stubs / contract JAR was downloaded from a remote location or a local one(only applicable to Maven repos, not Git or Pact).
|
||||
* *deleteStubsAfterTest*: If set to `false` will not remove any downloaded
|
||||
contracts from temporary directories
|
||||
|
||||
@@ -1168,4 +1168,4 @@ will be executed against the running application
|
||||
under http://localhost:8081/artifactory/libs-release-local/com/example/bookstore/0.0.1.RELEASE/ .
|
||||
The stubs will be here http://localhost:8081/artifactory/libs-release-local/com/example/bookstore/0.0.1.RELEASE/bookstore-0.0.1.RELEASE-stubs.jar.
|
||||
|
||||
To see how the client side looks like check out the <<stubrunner-docker>> section.
|
||||
To see how the client side looks like check out the <<stubrunner-docker>> section.
|
||||
|
||||
@@ -103,7 +103,7 @@ public class StubRunnerOptions {
|
||||
|
||||
/**
|
||||
* If set to {@code true} will not assert whether the downloaded stubs / contract
|
||||
* JAR was downloaded from a remote location or a local one
|
||||
* JAR was downloaded from a remote location or a local one(only applicable to Maven repos, not Git or Pact)
|
||||
*/
|
||||
private boolean snapshotCheckSkip;
|
||||
|
||||
|
||||
@@ -97,7 +97,7 @@ interface StubRunnerRuleOptions {
|
||||
|
||||
/**
|
||||
* If set to {@code true} will not assert whether the downloaded stubs / contract
|
||||
* JAR was downloaded from a remote location or a local one
|
||||
* JAR was downloaded from a remote location or a local one(only applicable to Maven repos, not Git or Pact)
|
||||
*/
|
||||
StubRunnerRule withSnapshotCheckSkip(boolean snapshotCheckSkip);
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ public @interface AutoConfigureStubRunner {
|
||||
|
||||
/**
|
||||
* If set to {@code true} will not assert whether the downloaded stubs / contract
|
||||
* JAR was downloaded from a remote location or a local one
|
||||
* JAR was downloaded from a remote location or a local one(only applicable to Maven repos, not Git or Pact)
|
||||
*/
|
||||
boolean snapshotCheckSkip() default false;
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ public class StubRunnerProperties {
|
||||
|
||||
/**
|
||||
* If set to {@code true} will not assert whether the downloaded stubs / contract
|
||||
* JAR was downloaded from a remote location or a local one
|
||||
* JAR was downloaded from a remote location or a local one(only applicable to Maven repos, not Git or Pact)
|
||||
*/
|
||||
private boolean snapshotCheckSkip;
|
||||
|
||||
|
||||
@@ -174,7 +174,7 @@ class ContractVerifierExtension {
|
||||
|
||||
/**
|
||||
* If set to {@code true} will not assert whether the downloaded stubs / contract
|
||||
* JAR was downloaded from a remote location or a local one
|
||||
* JAR was downloaded from a remote location or a local one(only applicable to Maven repos, not Git or Pact)
|
||||
*/
|
||||
boolean contractsSnapshotCheckSkip = false
|
||||
|
||||
|
||||
Reference in New Issue
Block a user