Sync docs from master to gh-pages
This commit is contained in:
@@ -1564,7 +1564,7 @@ set a <code>metaData</code> entry in the Pact file with the <code>sentTo</code>
|
||||
<h3 id="how-to-use-pact-broker-pact-contract"><a class="anchor" href="#how-to-use-pact-broker-pact-contract"></a><a class="link" href="#how-to-use-pact-broker-pact-contract">7.3. Pact Contract</a></h3>
|
||||
<div class="paragraph">
|
||||
<p>Spring Cloud Contract can read the Pact JSON definition. You can place the file in the
|
||||
<code>src/test/resources/contracts</code> folder. The following example shows such a Pact contract:</p>
|
||||
<code>src/test/resources/contracts</code> folder. Remember to put the <code>spring-cloud-contract-pact</code> dependency to your classpath. The following example shows such a Pact contract:</p>
|
||||
</div>
|
||||
<div class="exampleblock">
|
||||
<div class="content">
|
||||
|
||||
@@ -671,6 +671,65 @@ the <code>Contract</code> class (<code>import org.springframework.cloud.spec.Con
|
||||
Just like the with the Java DSL you can put your contracts in any directory of your choice.
|
||||
The Maven and Gradle plugins will look at the <code>src/test/resources/contracts</code> directory by default.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>You need to explicitly pass the the <code>spring-cloud-contract-spec-kotlin</code> dependency to your project plugin setup.</p>
|
||||
</div>
|
||||
<div class="exampleblock">
|
||||
<div class="content">
|
||||
<div class="listingblock primary">
|
||||
<div class="title">Maven</div>
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-xml hljs" data-lang="xml"><plugin>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-contract-maven-plugin</artifactId>
|
||||
<version>${spring-cloud-contract.version}</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<!-- some config -->
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-contract-spec-kotlin</artifactId>
|
||||
<version>${spring-cloud-contract.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<dependencies>
|
||||
<!-- Remember to add this for the DSL support in the IDE and on the consumer side -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-contract-spec-kotlin</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies></code></pre>
|
||||
</div>
|
||||
</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">buildscript {
|
||||
repositories {
|
||||
// ...
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.springframework.cloud:spring-cloud-contract-gradle-plugin:${scContractVersion}"
|
||||
// remember to add this:
|
||||
classpath "org.springframework.cloud:spring-cloud-contract-spec-kotlin:${scContractVersion}"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// ...
|
||||
|
||||
// Remember to add this for the DSL support in the IDE and on the consumer side
|
||||
testImplementation "org.springframework.cloud:spring-cloud-contract-spec-kotlin"
|
||||
}</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="admonitionblock important">
|
||||
<table>
|
||||
<tr>
|
||||
|
||||
@@ -4569,6 +4569,65 @@ the <code>Contract</code> class (<code>import org.springframework.cloud.spec.Con
|
||||
Just like the with the Java DSL you can put your contracts in any directory of your choice.
|
||||
The Maven and Gradle plugins will look at the <code>src/test/resources/contracts</code> directory by default.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>You need to explicitly pass the the <code>spring-cloud-contract-spec-kotlin</code> dependency to your project plugin setup.</p>
|
||||
</div>
|
||||
<div class="exampleblock">
|
||||
<div class="content">
|
||||
<div class="listingblock primary">
|
||||
<div class="title">Maven</div>
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-xml hljs" data-lang="xml"><plugin>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-contract-maven-plugin</artifactId>
|
||||
<version>${spring-cloud-contract.version}</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<!-- some config -->
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-contract-spec-kotlin</artifactId>
|
||||
<version>${spring-cloud-contract.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<dependencies>
|
||||
<!-- Remember to add this for the DSL support in the IDE and on the consumer side -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-contract-spec-kotlin</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies></code></pre>
|
||||
</div>
|
||||
</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">buildscript {
|
||||
repositories {
|
||||
// ...
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.springframework.cloud:spring-cloud-contract-gradle-plugin:${scContractVersion}"
|
||||
// remember to add this:
|
||||
classpath "org.springframework.cloud:spring-cloud-contract-spec-kotlin:${scContractVersion}"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// ...
|
||||
|
||||
// Remember to add this for the DSL support in the IDE and on the consumer side
|
||||
testImplementation "org.springframework.cloud:spring-cloud-contract-spec-kotlin"
|
||||
}</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="admonitionblock important">
|
||||
<table>
|
||||
<tr>
|
||||
@@ -15479,7 +15538,7 @@ set a <code>metaData</code> entry in the Pact file with the <code>sentTo</code>
|
||||
<h4 id="how-to-use-pact-broker-pact-contract"><a class="anchor" href="#how-to-use-pact-broker-pact-contract"></a><a class="link" href="#how-to-use-pact-broker-pact-contract">5.7.3. Pact Contract</a></h4>
|
||||
<div class="paragraph">
|
||||
<p>Spring Cloud Contract can read the Pact JSON definition. You can place the file in the
|
||||
<code>src/test/resources/contracts</code> folder. The following example shows such a Pact contract:</p>
|
||||
<code>src/test/resources/contracts</code> folder. Remember to put the <code>spring-cloud-contract-pact</code> dependency to your classpath. The following example shows such a Pact contract:</p>
|
||||
</div>
|
||||
<div class="exampleblock">
|
||||
<div class="content">
|
||||
|
||||
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_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>All Classes (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>All Classes (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Constant Field Values (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Deprecated List (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>API Help (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Index (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API</title>
|
||||
<script type="text/javascript">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>BaseClassMapping (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>ConvertMojo (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>GenerateStubsMojo (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>GenerateTestsMojo (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>HelpMojo (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>PushStubsToScmMojo (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>RunMojo (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>AetherStubDownloaderFactory (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>LocalStubRunner (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>RemoteStubRunner (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<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.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Overview List (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Overview (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:00:25 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 30 09:24:24 UTC 2019 -->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Class Hierarchy (Spring Cloud Contract Maven Plugin 2.2.0.BUILD-SNAPSHOT API)</title>
|
||||
<meta name="date" content="2019-08-30">
|
||||
|
||||
Reference in New Issue
Block a user