Files
spring-cloud-contract/_includes/pom.xml
Marcin Grzejszczak 97fbb76e2a Update pom.xml
2018-04-10 11:01:18 +02:00

37 lines
1.2 KiB
XML

<dependencyManagement>
<dependencies>
<!-- If you're adding this dependency explicitly you have to
add it *BEFORE* the Release Train BOM-->
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-cloud-contract-dependencies</artifactId>
<version>{@= version @}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-cloud-starter-contract-verifier</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-cloud-contract-maven-plugin</artifactId>
<version>{@= version @}</version>
<!-- Don't forget about this value !! -->
<extensions>true</extensions>
<configuration>
<!-- Provide the base class for your auto-generated tests -->
<baseClassForTests>com.example.MvcTest</baseClassForTests>
</configuration>
</plugin>
</plugins>
</build>