spring 云合约生成生产者 类 测试
spring cloud contract gerenate producer classes test
在生产者端,我需要跳过存根生成(所以我只需要生成 类 测试)。为此更改 Maven 插件如下:
<plugin>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-contract-maven-plugin</artifactId>
<extensions>true</extensions>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>convert</goal>
<!--goal>generateStubs</goal-->
<goal>generateTests</goal>
</goals>
</execution>
</executions>
但使用此配置,仍然会生成存根
如果您自己设定目标,请不要设定 <extensions>true</extensions>
在生产者端,我需要跳过存根生成(所以我只需要生成 类 测试)。为此更改 Maven 插件如下:
<plugin>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-contract-maven-plugin</artifactId>
<extensions>true</extensions>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>convert</goal>
<!--goal>generateStubs</goal-->
<goal>generateTests</goal>
</goals>
</execution>
</executions>
但使用此配置,仍然会生成存根
如果您自己设定目标,请不要设定 <extensions>true</extensions>