Annotation Interface ClassPathExclusions


@Retention(RUNTIME) @Target(TYPE) @ExtendWith(ModifiedClassPathExtension.class) public @interface ClassPathExclusions
Taken from Spring Boot test utils. https://github.com/spring-projects/spring-boot/blob/ 1.4.x/spring-boot/src/test/java/org/springframework/boot/testutil/ClassPathExclusions.java
Author:
Ryan Baxter
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    One or more Ant-style patterns that identify entries to be excluded from the class path.
  • Element Details

    • value

      String[] value
      One or more Ant-style patterns that identify entries to be excluded from the class path. Matching is performed against an entry's file name. For example, to exclude Hibernate Validator from the classpath, "hibernate-validator-*.jar" can be used.
      Returns:
      the exclusion patterns