Created
May 26, 2017 09:56
-
-
Save keyboardsamurai/a3202b8132c9173531c79ea87f9fa597 to your computer and use it in GitHub Desktop.
Maven cloud contract plugin configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-contract-maven-plugin</artifactId> | |
<version>1.1.0.RELEASE</version> | |
<extensions>true</extensions> | |
<configuration> | |
<testMode>EXPLICIT</testMode> | |
<packageWithBaseClasses>com.acme.foobar.core.service.config</packageWithBaseClasses> | |
<baseClassForTests>ContractVerifierBase</baseClassForTests> | |
</configuration> | |
<executions> | |
<execution> | |
<id>spring-cloud-generateTests</id> | |
<phase>compile</phase> | |
<goals> | |
<goal>generateTests</goal> | |
</goals> | |
</execution> | |
<execution> | |
<id>spring-cloud-generateStubs</id> | |
<phase>install</phase> | |
<goals> | |
<goal>generateStubs</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment