[
https://issues.jboss.org/browse/JBIDE-9801?page=com.atlassian.jira.plugin...
]
Daniel Azarov updated JBIDE-9801:
---------------------------------
Fix Version/s: 3.3.0.Beta1
(was: 3.3.0.M4)
CDI Searcher doesn't look for beans in dependent projects
---------------------------------------------------------
Key: JBIDE-9801
URL:
https://issues.jboss.org/browse/JBIDE-9801
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: CDI
Affects Versions: 3.3.0.M4
Reporter: Alexey Kazakov
Assignee: Daniel Azarov
Fix For: 3.3.0.Beta1
EXECUTE: Create two CDI projects: ProjectA and ProjectB. ProjectB depends on ProjectA.
EXECUTE: Create a bean in ProjectA:
{code}
@Named("cdiBean")
public class CDIBeanTest {
}
{code}
EXECUTE: Create another bean in ProjectB:
{code}
public class TestBean {
@Inject @Named("cdiBean") Object foo;
}
{code}
EXECUTE: Select CDIBeanTest class name in CDIBeanTest.java and press Ctrl+Shift+G
ASSERT: TestBean.foo should be found as an injection point which gets the wanted bean.
Now it's working only if you have both beans in the same project.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira