package org.nuunframework.kernel.tests.annotations; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation can be used on integration tests to disable SEED automatic plugin loading. * * @author epo.jemba@kametic.com */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited public @interface WithoutSpiPluginsLoader { }