Sync docs from master to gh-pages
This commit is contained in:
@@ -228,6 +228,35 @@ following sections:</p>
|
||||
spring-cloud-contract-maven-plugin/index.html[Spring
|
||||
Cloud Contract Maven Plugin Documentation].</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Sometimes, regardless of the picked IDE, you can see that the <code>target/generated-test-source</code> folder is not visible on the IDE’s classpath. To ensure that it’s always there, you can add the following entry to your <code>pom.xml</code></p>
|
||||
</div>
|
||||
<div class="exampleblock">
|
||||
<div class="content">
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="highlightjs highlight"><code class="language-xml hljs" data-lang="xml"><plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>add-source</id>
|
||||
<phase>generate-test-sources</phase>
|
||||
<goals>
|
||||
<goal>add-test-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>${project.build.directory}/generated-test-sources/contracts/</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin></code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect1">
|
||||
|
||||
@@ -9280,6 +9280,7 @@ class StubRunnerConfigurationSpec extends Specification {
|
||||
void setupProps() {
|
||||
System.clearProperty("stubrunner.repository.root")
|
||||
System.clearProperty("stubrunner.classifier")
|
||||
WireMockHttpServerStubAccessor.clear()
|
||||
}
|
||||
|
||||
def 'should mark all ports as random'() {
|
||||
|
||||
Reference in New Issue
Block a user