1 package com.atlassian.plugin.spring.scanner.test.otherplugin.impl;
2
3 import com.atlassian.plugin.spring.scanner.annotation.export.ExportAsService;
4 import com.atlassian.plugin.spring.scanner.test.otherplugin.ServiceExportedFromAnotherPlugin;
5 import org.springframework.stereotype.Component;
6
7
8
9
10 @ExportAsService(ServiceExportedFromAnotherPlugin.class)
11 @Component
12 @SuppressWarnings("unused")
13 public class ServiceExportedFromAnotherPluginImpl implements ServiceExportedFromAnotherPlugin {
14 }