Is is possible to create prototype scoped component in JIRA plugin? My intention is to create a different object on each dependency injection. Spring prototype scope seems to be intended for that reason. But annotation
(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE, proxyMode = ScopedProxyMode.TARGET_CLASS)@Scope
doesn't seems to have any effect on a component, which is effectively stays "singleton" (checked at runtime through ApplicationContext.isPrototype(String name)).