From 688250e51c3fc291557f0a4619def303ed0d4d98 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Thu, 9 Jan 2025 13:11:19 +0100 Subject: [PATCH] Removes reference to Maven Plugin docs fixes #2147 --- docs/modules/ROOT/pages/maven-project.adoc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/modules/ROOT/pages/maven-project.adoc b/docs/modules/ROOT/pages/maven-project.adoc index 639b1e1804..4b834e7ba3 100644 --- a/docs/modules/ROOT/pages/maven-project.adoc +++ b/docs/modules/ROOT/pages/maven-project.adoc @@ -34,10 +34,6 @@ Next, add the `Spring Cloud Contract Verifier` Maven plugin, as follows: ---- -You can read more in the -spring-cloud-contract-maven-plugin/index.html[Spring -Cloud Contract Maven Plugin Documentation]. - Sometimes, regardless of the picked IDE, you can see that the `target/generated-test-source` folder is not visible on the IDE's classpath. To ensure that it is always there, you can add the following entry to your `pom.xml` [source,xml,indent=0] @@ -367,10 +363,8 @@ import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.web.server.LocalServerPort; -import org.springframework.test.context.junit4.SpringRunner; import org.springframework.web.context.WebApplicationContext; -@RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT, classes = SomeConfig.class, properties="some=property") public abstract class BaseTestClass {