Sync docs from master to gh-pages
This commit is contained in:
@@ -2148,8 +2148,7 @@ can also provide the offline work switch (<code>StubRunnerProperties.StubsMode.L
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
@AutoConfigureStubRunner(ids = {
|
||||
"com.example:http-server-dsl:0.0.1:stubs" }, stubsMode = StubRunnerProperties.StubsMode.LOCAL)
|
||||
public class LoanApplicationServiceTests {</code></pre>
|
||||
@@ -2345,11 +2344,11 @@ start the server side <code>FraudDetectionController</code>. The following listi
|
||||
package com.example.fraud;
|
||||
|
||||
import io.restassured.module.mockmvc.RestAssuredMockMvc;
|
||||
import org.junit.Before;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
|
||||
public class FraudBase {
|
||||
|
||||
@Before
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
RestAssuredMockMvc.standaloneSetup(new FraudDetectionController(),
|
||||
new FraudStatsController(stubbedStatsProvider()));
|
||||
|
||||
@@ -2359,6 +2359,7 @@ import org.junit.Rule;
|
||||
import org.junit.rules.TestName;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.restdocs.JUnitRestDocumentation;
|
||||
|
||||
@@ -10445,8 +10445,7 @@ your test. The following code shows an example:</p>
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
@AutoConfigureWireMock(port = 0)
|
||||
public class WiremockForDocsTests {
|
||||
|
||||
@@ -10454,7 +10453,7 @@ public class WiremockForDocsTests {
|
||||
@Autowired
|
||||
private Service service;
|
||||
|
||||
@Before
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
this.service.setBase("http://localhost:"
|
||||
+ this.environment.getProperty("wiremock.server.port"));
|
||||
@@ -10586,21 +10585,33 @@ instance, as the following example shows:</p>
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
public class WiremockForDocsClassRuleTests {
|
||||
|
||||
// Start WireMock on some dynamic port
|
||||
// for some reason `dynamicPort()` is not working properly
|
||||
@ClassRule
|
||||
public static WireMockClassRule wiremock = new WireMockClassRule(
|
||||
WireMockSpring.options().dynamicPort());
|
||||
public static WireMockServer wiremock = new WireMockServer(WireMockSpring.options().dynamicPort());
|
||||
|
||||
@BeforeAll
|
||||
static void setupClass() {
|
||||
wiremock.start();
|
||||
}
|
||||
|
||||
@AfterEach
|
||||
void after() {
|
||||
wiremock.resetAll();
|
||||
}
|
||||
|
||||
@AfterAll
|
||||
static void clean() {
|
||||
wiremock.shutdown();
|
||||
}
|
||||
|
||||
// A service that calls out over HTTP to wiremock's port
|
||||
@Autowired
|
||||
private Service service;
|
||||
|
||||
@Before
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
this.service.setBase("http://localhost:" + wiremock.port());
|
||||
}
|
||||
@@ -10698,8 +10709,7 @@ a Spring <code>MockRestServiceServer</code>. The following code shows an example
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
public class WiremockForDocsMockServerApplicationTests {
|
||||
|
||||
@Autowired
|
||||
|
||||
@@ -2214,8 +2214,7 @@ can also provide the offline work switch (<code>StubRunnerProperties.StubsMode.L
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
@AutoConfigureStubRunner(ids = {
|
||||
"com.example:http-server-dsl:0.0.1:stubs" }, stubsMode = StubRunnerProperties.StubsMode.LOCAL)
|
||||
public class LoanApplicationServiceTests {</code></pre>
|
||||
@@ -2411,11 +2410,11 @@ start the server side <code>FraudDetectionController</code>. The following listi
|
||||
package com.example.fraud;
|
||||
|
||||
import io.restassured.module.mockmvc.RestAssuredMockMvc;
|
||||
import org.junit.Before;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
|
||||
public class FraudBase {
|
||||
|
||||
@Before
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
RestAssuredMockMvc.standaloneSetup(new FraudDetectionController(),
|
||||
new FraudStatsController(stubbedStatsProvider()));
|
||||
@@ -13819,8 +13818,7 @@ your test. The following code shows an example:</p>
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
@AutoConfigureWireMock(port = 0)
|
||||
public class WiremockForDocsTests {
|
||||
|
||||
@@ -13828,7 +13826,7 @@ public class WiremockForDocsTests {
|
||||
@Autowired
|
||||
private Service service;
|
||||
|
||||
@Before
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
this.service.setBase("http://localhost:"
|
||||
+ this.environment.getProperty("wiremock.server.port"));
|
||||
@@ -13960,21 +13958,33 @@ instance, as the following example shows:</p>
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||
public class WiremockForDocsClassRuleTests {
|
||||
|
||||
// Start WireMock on some dynamic port
|
||||
// for some reason `dynamicPort()` is not working properly
|
||||
@ClassRule
|
||||
public static WireMockClassRule wiremock = new WireMockClassRule(
|
||||
WireMockSpring.options().dynamicPort());
|
||||
public static WireMockServer wiremock = new WireMockServer(WireMockSpring.options().dynamicPort());
|
||||
|
||||
@BeforeAll
|
||||
static void setupClass() {
|
||||
wiremock.start();
|
||||
}
|
||||
|
||||
@AfterEach
|
||||
void after() {
|
||||
wiremock.resetAll();
|
||||
}
|
||||
|
||||
@AfterAll
|
||||
static void clean() {
|
||||
wiremock.shutdown();
|
||||
}
|
||||
|
||||
// A service that calls out over HTTP to wiremock's port
|
||||
@Autowired
|
||||
private Service service;
|
||||
|
||||
@Before
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
this.service.setBase("http://localhost:" + wiremock.port());
|
||||
}
|
||||
@@ -14072,8 +14082,7 @@ a Spring <code>MockRestServiceServer</code>. The following code shows an example
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
<pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">@SpringBootTest(webEnvironment = WebEnvironment.NONE)
|
||||
public class WiremockForDocsMockServerApplicationTests {
|
||||
|
||||
@Autowired
|
||||
@@ -19526,6 +19535,7 @@ import org.junit.Rule;
|
||||
import org.junit.rules.TestName;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.restdocs.JUnitRestDocumentation;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>All Classes (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>All Classes (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Constant Field Values (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Deprecated List (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>API Help (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Index (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API</title>
|
||||
<script type="text/javascript">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>BaseClassMapping (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>ConvertMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>GenerateStubsMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>GenerateTestsMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>HelpMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>PushStubsToScmMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>RunMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.BaseClassMapping (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.ConvertMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.GenerateStubsMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.GenerateTestsMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.HelpMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.PushStubsToScmMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.RunMojo (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>org.springframework.cloud.contract.maven.verifier (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>org.springframework.cloud.contract.maven.verifier (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>org.springframework.cloud.contract.maven.verifier Class Hierarchy (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Package org.springframework.cloud.contract.maven.verifier (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>AetherStubDownloaderFactory (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>LocalStubRunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>RemoteStubRunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.stubrunner.AetherStubDownloaderFactory (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.stubrunner.LocalStubRunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Class org.springframework.cloud.contract.maven.verifier.stubrunner.RemoteStubRunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>org.springframework.cloud.contract.maven.verifier.stubrunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>org.springframework.cloud.contract.maven.verifier.stubrunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>org.springframework.cloud.contract.maven.verifier.stubrunner Class Hierarchy (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Uses of Package org.springframework.cloud.contract.maven.verifier.stubrunner (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Overview List (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Overview (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 12:58:25 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Fri Feb 07 13:28:42 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Class Hierarchy (Spring Cloud Contract Maven Plugin 3.0.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-02-07">
|
||||
|
||||
@@ -679,7 +679,7 @@ last folders to and attach Base to its name.<br /><b>User property is</b>: packa
|
||||
|
||||
<td>-</td>
|
||||
|
||||
<td>(no description)<br /><b>Default value is</b>: JUNIT.<br /></td>
|
||||
<td>(no description)<br /><b>Default value is</b>: JUNIT5.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
@@ -1118,7 +1118,7 @@ last folders to and attach Base to its name.</div>
|
||||
|
||||
<li><b>Required</b>: No</li>
|
||||
|
||||
<li><b>Default</b>: JUNIT</li>
|
||||
<li><b>Default</b>: JUNIT5</li>
|
||||
</ul><hr /></section><section>
|
||||
<h4><a name="a.3CtestMode.3E"></a><b><a name="testMode"><testMode></a></b></h4>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user