View Javadoc
1   package com.atlassian.plugin.spring.scanner.external.component;
2   
3   import org.springframework.stereotype.Component;
4   
5   /**
6    * This is a component that is defined in a jar OUTSIDE out source and hence outside the range of the annotation processor
7    * and byte code scanner.  But @ClasspathComponent is meant t fix this up.
8    */
9   @Component
10  public class ExternalJarComponentTwo {
11  }