Sync docs from master to gh-pages
This commit is contained in:
@@ -580,6 +580,9 @@ contracts from temporary directories.</p>
|
||||
<li>
|
||||
<p><code>failOnNoContracts</code>: When enabled, will throw an exception when no contracts were found. Defaults to <code>true</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>failOnInProgress</code>: If set to true then if any contracts that are in progress are found, will break the build. On the producer side you need to be explicit about the fact that you have contracts in progress and take into consideration that you might be causing false positive test execution results on the consumer side.. Defaults to <code>true</code>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
|
||||
@@ -158,6 +158,7 @@ $(addBlockSwitches);
|
||||
<li><a href="#how-to-use-stubs-from-a-location">15. How can I Use Stubs from a Location</a></li>
|
||||
<li><a href="#how-to-generate-stubs-at-runtime">16. How can I Generate Stubs at Runtime</a></li>
|
||||
<li><a href="#how-to-use-the-failonnostubs-feature">17. How can I Make The Build Pass if There Are No Contracts or Stubs</a></li>
|
||||
<li><a href="#how-to-mark-contract-in-progress">18. How can I Mark that a Contract Is in Progress</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@@ -2498,6 +2499,17 @@ You need not specify the output directory for the generated snippets (since vers
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect1">
|
||||
<h2 id="how-to-mark-contract-in-progress"><a class="anchor" href="#how-to-mark-contract-in-progress"></a><a class="link" href="#how-to-mark-contract-in-progress">18. How can I Mark that a Contract Is in Progress</a></h2>
|
||||
<div class="sectionbody">
|
||||
<div class="paragraph">
|
||||
<p>If a contract is in progress, it means that the on the producer side tests will not be generated, but the stub will be. You can read more about this in <a href="project-features.html#contract-dsl-in-progress">this section</a> of the documentation.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>In a CI build, before going to production, you would like to ensure that no in progress contracts are there on the classpath. That’s because you may lead to false positives. That’s why, by default, in the Spring Cloud Contract plugin, we set the value of <code>failOnInProgress</code> to <code>true</code>. If you want to allow such contracts when tests are to be generated, just set the flag to <code>false</code>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="js/tocbot/tocbot.min.js"></script>
|
||||
<script type="text/javascript" src="js/toc.js"></script>
|
||||
|
||||
@@ -515,6 +515,9 @@ components. Those properties might be used by (for example) built-in or custom S
|
||||
<li>
|
||||
<p><code>failOnNoContracts</code>: When enabled, will throw an exception when no contracts were found. Defaults to <code>true</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>failOnInProgress</code>: If set to true then if any contracts that are in progress are found, will break the build. On the producer side you need to be explicit about the fact that you have contracts in progress and take into consideration that you might be causing false positive test execution results on the consumer side.. Defaults to <code>true</code>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
|
||||
@@ -765,6 +765,9 @@ example shows how to do so:</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>You can set the value of the <code>failOnInProgress</code> Spring Cloud Contract plugin property to ensure that your build will break when at least one contract in progress remains in your sources.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect3">
|
||||
<h4 id="contract-dsl-passing-values-from-files"><a class="anchor" href="#contract-dsl-passing-values-from-files"></a><a class="link" href="#contract-dsl-passing-values-from-files">1.2.5. Passing Values from Files</a></h4>
|
||||
|
||||
@@ -444,6 +444,7 @@ $(addBlockSwitches);
|
||||
<li><a href="#how-to-use-stubs-from-a-location">5.15. How can I Use Stubs from a Location</a></li>
|
||||
<li><a href="#how-to-generate-stubs-at-runtime">5.16. How can I Generate Stubs at Runtime</a></li>
|
||||
<li><a href="#how-to-use-the-failonnostubs-feature">5.17. How can I Make The Build Pass if There Are No Contracts or Stubs</a></li>
|
||||
<li><a href="#how-to-mark-contract-in-progress">5.18. How can I Mark that a Contract Is in Progress</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
@@ -4406,6 +4407,9 @@ example shows how to do so:</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>You can set the value of the <code>failOnInProgress</code> Spring Cloud Contract plugin property to ensure that your build will break when at least one contract in progress remains in your sources.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect4">
|
||||
<h5 id="contract-dsl-passing-values-from-files"><a class="anchor" href="#contract-dsl-passing-values-from-files"></a><a class="link" href="#contract-dsl-passing-values-from-files">Passing Values from Files</a></h5>
|
||||
@@ -14899,6 +14903,15 @@ You need not specify the output directory for the generated snippets (since vers
|
||||
<p>If you want the plugins not to fail the build when no contracts were found, you can set the <code>failOnNoStubs</code> flag in Maven or call the <code>contractRepository { failOnNoStubs(false) }</code> Closure in Gradle.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect2">
|
||||
<h3 id="how-to-mark-contract-in-progress"><a class="anchor" href="#how-to-mark-contract-in-progress"></a><a class="link" href="#how-to-mark-contract-in-progress">5.18. How can I Mark that a Contract Is in Progress</a></h3>
|
||||
<div class="paragraph">
|
||||
<p>If a contract is in progress, it means that the on the producer side tests will not be generated, but the stub will be. You can read more about this in <a href="#contract-dsl-in-progress">this section</a> of the documentation.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>In a CI build, before going to production, you would like to ensure that no in progress contracts are there on the classpath. That’s because you may lead to false positives. That’s why, by default, in the Spring Cloud Contract plugin, we set the value of <code>failOnInProgress</code> to <code>true</code>. If you want to allow such contracts when tests are to be generated, just set the flag to <code>false</code>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../../../../../script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_201) on Thu Aug 08 03:54:02 UTC 2019 -->
|
||||
<!-- Generated by javadoc (1.8.0_201) on Fri Aug 09 21:57:13 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-08">
|
||||
<meta name="date" content="2019-08-09">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Checkstyle Results</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
@@ -294,7 +294,7 @@
|
||||
<td>12</td>
|
||||
<td>0</td>
|
||||
<td>0</td>
|
||||
<td>530</td></tr></table></div>
|
||||
<td>534</td></tr></table></div>
|
||||
<div class="section">
|
||||
<h2><a name="Files"></a>Files</h2>
|
||||
<table border="0" class="table table-striped">
|
||||
@@ -327,7 +327,7 @@
|
||||
<td><a href="#org.springframework.cloud.contract.maven.verifier.GenerateTestsMojo.java">org/springframework/cloud/contract/maven/verifier/GenerateTestsMojo.java</a></td>
|
||||
<td>0</td>
|
||||
<td>0</td>
|
||||
<td>98</td></tr>
|
||||
<td>102</td></tr>
|
||||
<tr class="a">
|
||||
<td><a href="#org.springframework.cloud.contract.maven.verifier.ManifestCreator.java">org/springframework/cloud/contract/maven/verifier/ManifestCreator.java</a></td>
|
||||
<td>0</td>
|
||||
@@ -429,7 +429,7 @@
|
||||
<tr class="b">
|
||||
<td>sizes</td>
|
||||
<td><a class="externalLink" href="http://checkstyle.sourceforge.net/config_sizes.html#LineLength">LineLength</a></td>
|
||||
<td>241</td>
|
||||
<td>245</td>
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td></tr>
|
||||
<tr class="a">
|
||||
<td></td>
|
||||
@@ -2055,322 +2055,346 @@
|
||||
<td>233</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 94).</td>
|
||||
<td>240</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 91).</td>
|
||||
<td>241</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 92).</td>
|
||||
<td>242</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'execute' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'execute' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>239</td></tr>
|
||||
<tr class="b">
|
||||
<td>248</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 83).</td>
|
||||
<td>240</td></tr>
|
||||
<tr class="a">
|
||||
<td>249</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 137).</td>
|
||||
<td>244</td></tr>
|
||||
<tr class="b">
|
||||
<td>253</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 117).</td>
|
||||
<td>249</td></tr>
|
||||
<tr class="a">
|
||||
<td>258</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 86).</td>
|
||||
<td>250</td></tr>
|
||||
<tr class="b">
|
||||
<td>259</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 110).</td>
|
||||
<td>254</td></tr>
|
||||
<tr class="a">
|
||||
<td>263</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 82).</td>
|
||||
<td>255</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 128).</td>
|
||||
<td>260</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 103).</td>
|
||||
<td>261</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 84).</td>
|
||||
<td>263</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>coding</td>
|
||||
<td>HiddenField</td>
|
||||
<td>'contractsDirectory' hides a field.</td>
|
||||
<td>263</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 105).</td>
|
||||
<td>264</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 95).</td>
|
||||
<td>265</td></tr>
|
||||
<td>Line is longer than 80 characters (found 128).</td>
|
||||
<td>269</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 103).</td>
|
||||
<td>270</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 84).</td>
|
||||
<td>273</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>coding</td>
|
||||
<td>HiddenField</td>
|
||||
<td>'contractsDirectory' hides a field.</td>
|
||||
<td>273</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 105).</td>
|
||||
<td>274</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 95).</td>
|
||||
<td>275</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 100).</td>
|
||||
<td>266</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 93).</td>
|
||||
<td>267</td></tr>
|
||||
<td>276</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 93).</td>
|
||||
<td>269</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 89).</td>
|
||||
<td>270</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 102).</td>
|
||||
<td>272</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 106).</td>
|
||||
<td>275</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 88).</td>
|
||||
<td>277</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 102).</td>
|
||||
<td>281</td></tr>
|
||||
<td>Line is longer than 80 characters (found 81).</td>
|
||||
<td>278</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 88).</td>
|
||||
<td>284</td></tr>
|
||||
<td>Line is longer than 80 characters (found 93).</td>
|
||||
<td>279</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 101).</td>
|
||||
<td>Line is longer than 80 characters (found 89).</td>
|
||||
<td>280</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 102).</td>
|
||||
<td>282</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 106).</td>
|
||||
<td>285</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 88).</td>
|
||||
<td>287</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 102).</td>
|
||||
<td>291</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 88).</td>
|
||||
<td>294</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 101).</td>
|
||||
<td>286</td></tr>
|
||||
<td>295</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 101).</td>
|
||||
<td>296</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 90).</td>
|
||||
<td>292</td></tr>
|
||||
<td>302</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>blocks</td>
|
||||
<td>RightCurly</td>
|
||||
<td>'}' at column 3 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally).</td>
|
||||
<td>293</td></tr>
|
||||
<td>303</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 108).</td>
|
||||
<td>296</td></tr>
|
||||
<td>306</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>302</td></tr>
|
||||
<td>312</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>misc</td>
|
||||
<td>FinalParameters</td>
|
||||
<td>Parameter config should be final.</td>
|
||||
<td>302</td></tr>
|
||||
<td>312</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>misc</td>
|
||||
<td>FinalParameters</td>
|
||||
<td>Parameter contractsDirectory should be final.</td>
|
||||
<td>303</td></tr>
|
||||
<td>313</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>coding</td>
|
||||
<td>HiddenField</td>
|
||||
<td>'contractsDirectory' hides a field.</td>
|
||||
<td>303</td></tr>
|
||||
<td>313</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 84).</td>
|
||||
<td>306</td></tr>
|
||||
<td>316</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'mappingsToMap' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'mappingsToMap' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>325</td></tr>
|
||||
<td>335</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>325</td></tr>
|
||||
<td>335</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>sizes</td>
|
||||
<td>LineLength</td>
|
||||
<td>Line is longer than 80 characters (found 94).</td>
|
||||
<td>331</td></tr>
|
||||
<td>341</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'getExcludedFiles' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'getExcludedFiles' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>336</td></tr>
|
||||
<td>346</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>336</td></tr>
|
||||
<td>346</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'setExcludedFiles' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'setExcludedFiles' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>340</td></tr>
|
||||
<td>350</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>340</td></tr>
|
||||
<td>350</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>misc</td>
|
||||
<td>FinalParameters</td>
|
||||
<td>Parameter excludedFiles should be final.</td>
|
||||
<td>340</td></tr>
|
||||
<td>350</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>coding</td>
|
||||
<td>HiddenField</td>
|
||||
<td>'excludedFiles' hides a field.</td>
|
||||
<td>340</td></tr>
|
||||
<td>350</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'getIgnoredFiles' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'getIgnoredFiles' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>344</td></tr>
|
||||
<td>354</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>344</td></tr>
|
||||
<td>354</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'setIgnoredFiles' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'setIgnoredFiles' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>348</td></tr>
|
||||
<td>358</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>348</td></tr>
|
||||
<td>358</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>misc</td>
|
||||
<td>FinalParameters</td>
|
||||
<td>Parameter ignoredFiles should be final.</td>
|
||||
<td>348</td></tr>
|
||||
<td>358</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>coding</td>
|
||||
<td>HiddenField</td>
|
||||
<td>'ignoredFiles' hides a field.</td>
|
||||
<td>348</td></tr>
|
||||
<td>358</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'isAssertJsonSize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'isAssertJsonSize' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>352</td></tr>
|
||||
<td>362</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>352</td></tr>
|
||||
<td>362</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>design</td>
|
||||
<td>DesignForExtension</td>
|
||||
<td>Class 'GenerateTestsMojo' looks like designed for extension (can be subclassed), but the method 'setAssertJsonSize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GenerateTestsMojo' final or making the method 'setAssertJsonSize' static/final/abstract/empty, or adding allowed annotation for the method.</td>
|
||||
<td>356</td></tr>
|
||||
<td>366</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>javadoc</td>
|
||||
<td>JavadocMethod</td>
|
||||
<td>Missing a Javadoc comment.</td>
|
||||
<td>356</td></tr>
|
||||
<td>366</td></tr>
|
||||
<tr class="b">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>misc</td>
|
||||
<td>FinalParameters</td>
|
||||
<td>Parameter assertJsonSize should be final.</td>
|
||||
<td>356</td></tr>
|
||||
<td>366</td></tr>
|
||||
<tr class="a">
|
||||
<td><img src="images/icon_error_sml.gif" alt="" /> Error</td>
|
||||
<td>coding</td>
|
||||
<td>HiddenField</td>
|
||||
<td>'assertJsonSize' hides a field.</td>
|
||||
<td>356</td></tr></table></div>
|
||||
<td>366</td></tr></table></div>
|
||||
<div class="section">
|
||||
<h3 id="org.springframework.cloud.contract.maven.verifier.ManifestCreator.java">org/springframework/cloud/contract/maven/verifier/ManifestCreator.java</h3>
|
||||
<table border="0" class="table table-striped">
|
||||
|
||||
@@ -26,7 +26,7 @@ under the License.
|
||||
<copyright>©2016 - 2019 Spring</copyright>
|
||||
<item>
|
||||
<title>File: 12,
|
||||
Errors: 530,
|
||||
Errors: 534,
|
||||
Warnings: 0,
|
||||
Infos: 0
|
||||
</title>
|
||||
@@ -55,7 +55,7 @@ under the License.
|
||||
0
|
||||
</td>
|
||||
<td>
|
||||
98
|
||||
102
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – CI Management</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – </title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – </title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – spring-cloud-contract:convert</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – spring-cloud-contract:generateStubs</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – spring-cloud-contract:generateTests</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
@@ -506,17 +506,32 @@ folder after running tests.<br /><b>Default value is</b>: <tt>true</tt>.<br /><b
|
||||
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#failOnNoStubs">failOnNoStubs</a></b></td>
|
||||
<td><b><a href="#failOnInProgress">failOnInProgress</a></b></td>
|
||||
|
||||
<td><tt>boolean</tt></td>
|
||||
|
||||
<td><tt>-</tt></td>
|
||||
|
||||
<td>If set to true then if any contracts that are in progress are
|
||||
found, will break the build. On the producer side you need to be
|
||||
explicit about the fact that you have contracts in progress and
|
||||
take into consideration that you might be causing false positive
|
||||
test execution results on the consumer side.<br /><b>Default value is</b>: <tt>true</tt>.<br /><b>User property is</b>: <tt>failOnInProgress</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#failOnNoContracts">failOnNoContracts</a></b></td>
|
||||
|
||||
<td><tt>boolean</tt></td>
|
||||
|
||||
<td><tt>-</tt></td>
|
||||
|
||||
<td>When enabled, this flag will tell stub runner to throw an exception
|
||||
when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt>.<br /><b>User property is</b>: <tt>failOnNoStubs</tt>.<br /></td>
|
||||
when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt>.<br /><b>User property is</b>: <tt>failOnNoContracts</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#generatedTestResourcesDir">generatedTestResourcesDir</a></b></td>
|
||||
|
||||
@@ -527,7 +542,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
<td>(no description)<br /><b>Default value is</b>: <tt>${project.build.directory}/generated-test-resources/contracts</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#generatedTestSourcesDir">generatedTestSourcesDir</a></b></td>
|
||||
|
||||
@@ -538,7 +553,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
<td>(no description)<br /><b>Default value is</b>: <tt>${project.build.directory}/generated-test-sources/contracts</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#ignoredFiles">ignoredFiles</a></b></td>
|
||||
|
||||
@@ -550,7 +565,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
@Ignored tests.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#imports">imports</a></b></td>
|
||||
|
||||
@@ -561,7 +576,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
<td>Imports that should be added to generated tests.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#includedFiles">includedFiles</a></b></td>
|
||||
|
||||
@@ -572,7 +587,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
<td>Patterns that should be taken into account for processing.<br /><b>User property is</b>: <tt>includedFiles</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#mavenTestSkip">mavenTestSkip</a></b></td>
|
||||
|
||||
@@ -583,7 +598,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
<td>(no description)<br /><b>Default value is</b>: <tt>false</tt>.<br /><b>User property is</b>: <tt>maven.test.skip</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#nameSuffixForTests">nameSuffixForTests</a></b></td>
|
||||
|
||||
@@ -594,7 +609,7 @@ when no stubs / contracts were found.<br /><b>Default value is</b>: <tt>true</tt
|
||||
<td>(no description)<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#packageWithBaseClasses">packageWithBaseClasses</a></b></td>
|
||||
|
||||
@@ -613,7 +628,7 @@ test source file that will have the package
|
||||
last folders to and attach <tt>Base</tt> to its name.<br /><b>User property is</b>: <tt>packageWithBaseClasses</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#ruleClassForTests">ruleClassForTests</a></b></td>
|
||||
|
||||
@@ -624,7 +639,7 @@ last folders to and attach <tt>Base</tt> to its name.<br /><b>User property is</
|
||||
<td>(no description)<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#skip">skip</a></b></td>
|
||||
|
||||
@@ -635,7 +650,7 @@ last folders to and attach <tt>Base</tt> to its name.<br /><b>User property is</
|
||||
<td>(no description)<br /><b>Default value is</b>: <tt>false</tt>.<br /><b>User property is</b>: <tt>spring.cloud.contract.verifier.skip</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#skipTests">skipTests</a></b></td>
|
||||
|
||||
@@ -646,7 +661,7 @@ last folders to and attach <tt>Base</tt> to its name.<br /><b>User property is</
|
||||
<td>(no description)<br /><b>Default value is</b>: <tt>false</tt>.<br /><b>User property is</b>: <tt>skipTests</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#staticImports">staticImports</a></b></td>
|
||||
|
||||
@@ -657,7 +672,7 @@ last folders to and attach <tt>Base</tt> to its name.<br /><b>User property is</
|
||||
<td>Static imports that should be added to generated tests.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="b">
|
||||
<tr class="a">
|
||||
|
||||
<td><b><a href="#testFramework">testFramework</a></b></td>
|
||||
|
||||
@@ -668,7 +683,7 @@ last folders to and attach <tt>Base</tt> to its name.<br /><b>User property is</
|
||||
<td>(no description)<br /><b>Default value is</b>: <tt>JUNIT</tt>.<br /></td>
|
||||
</tr>
|
||||
|
||||
<tr class="a">
|
||||
<tr class="b">
|
||||
|
||||
<td><b><a href="#testMode">testMode</a></b></td>
|
||||
|
||||
@@ -913,7 +928,25 @@ folder after running tests.</div>
|
||||
|
||||
<li><b>Required</b>: <tt>No</tt></li>
|
||||
</ul><hr />
|
||||
<p><b><a name="failOnNoStubs">failOnNoStubs</a>:</b></p>
|
||||
<p><b><a name="failOnInProgress">failOnInProgress</a>:</b></p>
|
||||
|
||||
<div>If set to true then if any contracts that are in progress are
|
||||
found, will break the build. On the producer side you need to be
|
||||
explicit about the fact that you have contracts in progress and
|
||||
take into consideration that you might be causing false positive
|
||||
test execution results on the consumer side.</div>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><b>Type</b>: <tt>boolean</tt></li>
|
||||
|
||||
<li><b>Required</b>: <tt>No</tt></li>
|
||||
|
||||
<li><b>User Property</b>: <tt>failOnInProgress</tt></li>
|
||||
|
||||
<li><b>Default</b>: <tt>true</tt></li>
|
||||
</ul><hr />
|
||||
<p><b><a name="failOnNoContracts">failOnNoContracts</a>:</b></p>
|
||||
|
||||
<div>When enabled, this flag will tell stub runner to throw an exception
|
||||
when no stubs / contracts were found.</div>
|
||||
@@ -924,7 +957,7 @@ when no stubs / contracts were found.</div>
|
||||
|
||||
<li><b>Required</b>: <tt>No</tt></li>
|
||||
|
||||
<li><b>User Property</b>: <tt>failOnNoStubs</tt></li>
|
||||
<li><b>User Property</b>: <tt>failOnNoContracts</tt></li>
|
||||
|
||||
<li><b>Default</b>: <tt>true</tt></li>
|
||||
</ul><hr />
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – spring-cloud-contract:help</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – </title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Issue Management</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – </title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Project Licenses</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Plugin Documentation</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Project Plugin Management</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Project Plugins</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Project Information</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Generated Reports</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – spring-cloud-contract:pushStubsToScm</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – spring-cloud-contract:run</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Source Code Management</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Sitemap</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – </title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Project Summary</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – Project Team</title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-08
|
||||
| Generated by Apache Maven Doxia Site Renderer 1.8.1 at 2019-08-09
|
||||
| Rendered using Apache Maven Fluido Skin 1.5
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190808" />
|
||||
<meta name="Date-Revision-yyyymmdd" content="20190809" />
|
||||
<meta http-equiv="Content-Language" content="en" />
|
||||
<title>Spring Cloud Contract Maven Plugin – </title>
|
||||
<link rel="stylesheet" href="./css/apache-maven-fluido-1.5.min.css" />
|
||||
@@ -148,7 +148,7 @@
|
||||
<div id="breadcrumbs">
|
||||
<ul class="breadcrumb">
|
||||
|
||||
<li id="publishDate">Last Published: 2019-08-08
|
||||
<li id="publishDate">Last Published: 2019-08-09
|
||||
<span class="divider">|</span>
|
||||
</li>
|
||||
<li id="projectVersion">Version: 2.2.0.BUILD-SNAPSHOT
|
||||
|
||||
Reference in New Issue
Block a user