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
8 */
9 @Component
10 public class TransitiveJarComponentComposite {
11 @Autowired
12 TransitiveJarComponent1 externalJarComponent1;
13
14 @Autowired
15 TransitiveJarComponent2 externalJarComponent2;
16 }