Bumping versions

This commit is contained in:
buildmaster
2023-01-23 13:16:34 +00:00
parent a6c5d438fe
commit e4b199df93
3 changed files with 6 additions and 5 deletions

View File

@@ -29,6 +29,7 @@ import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Configuration;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Dave Syer
*

View File

@@ -24,8 +24,8 @@ import java.lang.annotation.Target;
import org.junit.jupiter.api.extension.ExtendWith;
/**
* Annotation used in combination with {@link ModifiedClassPathExtension} to override entries
* on the classpath.
* Annotation used in combination with {@link ModifiedClassPathExtension} to override
* entries on the classpath.
*
* @author Andy Wilkinson
*/

View File

@@ -37,9 +37,9 @@ import org.springframework.util.CollectionUtils;
/**
* A custom {@link Extension} that runs tests using a modified class path. Entries are
* excluded from the class path using {@link ClassPathExclusions @ClassPathExclusions} and
* overridden using {@link ClassPathOverrides @ClassPathOverrides} on the test class.
* A class loader is created with the customized class path and is used both to load
* the test class and as the thread context class loader while the test is being run.
* overridden using {@link ClassPathOverrides @ClassPathOverrides} on the test class. A
* class loader is created with the customized class path and is used both to load the
* test class and as the thread context class loader while the test is being run.
*
* @author Christoph Dreis
* @author Siva Krishna Battu