Sync docs from 2.2.x to gh-pages
This commit is contained in:
@@ -1284,6 +1284,42 @@ the `publish` task is executed
|
||||
publish.dependsOn("publishStubsToScm")</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>It is also possible to further customise the <code>publishStubsToScm</code> gradle task. In the following example,
|
||||
the task is customised to pick contracts from a local git repository:</p>
|
||||
</div>
|
||||
<div class="listingblock secondary">
|
||||
<div class="title">gradle</div>
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">publishStubsToScm {
|
||||
// We want to modify the default set up of the plugin when publish stubs to scm is called
|
||||
// We want to pick contracts from a Git repository
|
||||
contractDependency {
|
||||
stringNotation = "${project.group}:${project.name}:${project.version}"
|
||||
}
|
||||
/*
|
||||
We reuse the contract dependency section to set up the path
|
||||
to the folder that contains the contract definitions. In our case the
|
||||
path will be /groupId/artifactId/version/contracts
|
||||
*/
|
||||
contractRepository {
|
||||
repositoryUrl = "git://file://${new File(project.rootDir, "../target")}/contract_empty_git/"
|
||||
}
|
||||
// We set the contracts mode to `LOCAL`
|
||||
contractsMode = "LOCAL"
|
||||
}</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dlist">
|
||||
<dl>
|
||||
<dt class="hdlist1">IMPORTANT</dt>
|
||||
<dd>
|
||||
<p>Starting with <code>2.3.0.RELEASE</code> the <code>customize{}</code> closure previously used for the
|
||||
<code>publishStubsToScm</code> customization is no longer available. The settings should be applied directly
|
||||
within the <code>publishStubsToScm</code> closure as in the example above.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
@@ -2336,8 +2372,8 @@ To do so, include the following dependencies (if you have not already done so):<
|
||||
<div class="listingblock secondary">
|
||||
<div class="title">gradle</div>
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">testCompile 'org.springframework.cloud:spring-cloud-starter-contract-verifier'
|
||||
testCompile 'org.springframework.restdocs:spring-restdocs-mockmvc'</code></pre>
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">testImplementation 'org.springframework.cloud:spring-cloud-starter-contract-verifier'
|
||||
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -10484,7 +10484,7 @@ The registered WireMock server is reset after each test class, however, if you n
|
||||
<div class="paragraph">
|
||||
<p>If you use <code>@AutoConfigureWireMock</code>, it registers WireMock JSON stubs from the file
|
||||
system or classpath (by default, from <code>file:src/test/resources/mappings</code>). You can
|
||||
customize the locations byusing the <code>stubs</code> attribute in the annotation, which can be an
|
||||
customize the locations by using the <code>stubs</code> attribute in the annotation, which can be an
|
||||
Ant-style resource pattern or a directory. In the case of a directory, <code><strong>*/</strong>.json</code> is
|
||||
appended. The following code shows an example:</p>
|
||||
</div>
|
||||
|
||||
@@ -13858,7 +13858,7 @@ The registered WireMock server is reset after each test class, however, if you n
|
||||
<div class="paragraph">
|
||||
<p>If you use <code>@AutoConfigureWireMock</code>, it registers WireMock JSON stubs from the file
|
||||
system or classpath (by default, from <code>file:src/test/resources/mappings</code>). You can
|
||||
customize the locations byusing the <code>stubs</code> attribute in the annotation, which can be an
|
||||
customize the locations by using the <code>stubs</code> attribute in the annotation, which can be an
|
||||
Ant-style resource pattern or a directory. In the case of a directory, <code><strong>*/</strong>.json</code> is
|
||||
appended. The following code shows an example:</p>
|
||||
</div>
|
||||
@@ -18461,6 +18461,42 @@ the `publish` task is executed
|
||||
publish.dependsOn("publishStubsToScm")</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>It is also possible to further customise the <code>publishStubsToScm</code> gradle task. In the following example,
|
||||
the task is customised to pick contracts from a local git repository:</p>
|
||||
</div>
|
||||
<div class="listingblock secondary">
|
||||
<div class="title">gradle</div>
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">publishStubsToScm {
|
||||
// We want to modify the default set up of the plugin when publish stubs to scm is called
|
||||
// We want to pick contracts from a Git repository
|
||||
contractDependency {
|
||||
stringNotation = "${project.group}:${project.name}:${project.version}"
|
||||
}
|
||||
/*
|
||||
We reuse the contract dependency section to set up the path
|
||||
to the folder that contains the contract definitions. In our case the
|
||||
path will be /groupId/artifactId/version/contracts
|
||||
*/
|
||||
contractRepository {
|
||||
repositoryUrl = "git://file://${new File(project.rootDir, "../target")}/contract_empty_git/"
|
||||
}
|
||||
// We set the contracts mode to `LOCAL`
|
||||
contractsMode = "LOCAL"
|
||||
}</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dlist">
|
||||
<dl>
|
||||
<dt class="hdlist1">IMPORTANT</dt>
|
||||
<dd>
|
||||
<p>Starting with <code>2.3.0.RELEASE</code> the <code>customize{}</code> closure previously used for the
|
||||
<code>publishStubsToScm</code> customization is no longer available. The settings should be applied directly
|
||||
within the <code>publishStubsToScm</code> closure as in the example above.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
@@ -19497,8 +19533,8 @@ To do so, include the following dependencies (if you have not already done so):<
|
||||
<div class="listingblock secondary">
|
||||
<div class="title">gradle</div>
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">testCompile 'org.springframework.cloud:spring-cloud-starter-contract-verifier'
|
||||
testCompile 'org.springframework.restdocs:spring-restdocs-mockmvc'</code></pre>
|
||||
<pre class="highlightjs highlight"><code class="language-groovy hljs" data-lang="groovy">testImplementation 'org.springframework.cloud:spring-cloud-starter-contract-verifier'
|
||||
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
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 Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>All Classes (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>All Classes (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Constant Field Values (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Deprecated List (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>API Help (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Index (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Spring Cloud Contract Maven Plugin 2.2.3.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 Wed May 13 10:29:36 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>BaseClassMapping (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>ConvertMojo (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>GenerateStubsMojo (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>GenerateTestsMojo (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>HelpMojo (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>PushStubsToScmMojo (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>RunMojo (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:36 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>AetherStubDownloaderFactory (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:36 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>LocalStubRunner (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:36 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:30 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>RemoteStubRunner (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 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 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Overview List (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Overview (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 10:29:37 UTC 2020 -->
|
||||
<!-- Generated by javadoc (1.8.0_242) on Wed May 13 17:47:31 UTC 2020 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Class Hierarchy (Spring Cloud Contract Maven Plugin 2.2.3.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2020-05-13">
|
||||
|
||||
Reference in New Issue
Block a user