View Javadoc
1   package com.atlassian.plugin.spring.scanner.external.component;
2   
3   import org.springframework.beans.factory.annotation.Autowired;
4   import org.springframework.stereotype.Component;
5   
6   /**
7    * This is a component that is transitive but excluded in maven config
8    */
9   @Component
10  public class TransitiveExcludedJarComponentComposite {
11      @Autowired
12      TransitiveExcludedJarComponent1 externalJarComponent1;
13  
14      @Autowired
15      TransitiveExcludedJarComponent2 externalJarComponent2;
16  }