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 defined in a jar OUTSIDE out source and hence outside the range of the annotation processor
8 * and byte code scanner. But @ClasspathComponent is meant t fix this up.
9 */
10 @Component
11 public class ExternalJarComponentComposite {
12 @Autowired
13 ExternalJarComponentOne externalJarComponentOne;
14
15 @Autowired
16 ExternalJarComponentTwo externalJarComponentTwo;
17 }