[JBoss JIRA] Created: (JBDS-1713) m2e features disappear after installing egit
by Libor Zoubek (JIRA)
m2e features disappear after installing egit
--------------------------------------------
Key: JBDS-1713
URL: https://issues.jboss.org/browse/JBDS-1713
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Components: 3rdPartyCertification, updatesite
Affects Versions: 5.0.0.M2
Environment: Linux x86
Reporter: Libor Zoubek
Priority: Blocker
Fix For: 5.0.0.M3
I am facing very weird behaviour of JBDS. If I install m2e (only) from extras site, it takes longer as usuall. But only the phase saying 'Commiting the provisioning information' and JBDS startup time is affected (before JBDS asks for workspace). Installation of every other extra feature is slower than usual. The worst thing is, that after I install egit (maybe it is not related to egit, but just other extra feature) I cannot use m2e features in JBDS, it just disappears. But at the same time plugins can bee seen in installation history.
I tried to install just egit or just findBugs and after installing these there is no time penalty at startup or when installing othre extras and these features are available as expected. Thatswhy I think, there is something bad in our m2e feature.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 8 months
[JBoss JIRA] Created: (JBIDE-9345) AS7: remove unneeded additional indirection in service usage
by Andre Dietisheim (JIRA)
AS7: remove unneeded additional indirection in service usage
------------------------------------------------------------
Key: JBIDE-9345
URL: https://issues.jboss.org/browse/JBIDE-9345
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Affects Versions: 3.3.0.M3
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 3.3.x
AS tooling uses an osgi service to interact with the as7 server. This service is implemented in AS7Manager. This manager is not directly exposed but there's an additional indirection to it: JBoss7ManagerService. This was initially done because we thought about offerding additional functionalities which did not work out. We should now remove this additional indirection/wrapping since there's no sense to it, it only makes code harder to read.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 8 months
[JBoss JIRA] Created: (JBIDE-9423) CDI Validation throws NPE
by Alexey Kazakov (JIRA)
CDI Validation throws NPE
-------------------------
Key: JBIDE-9423
URL: https://issues.jboss.org/browse/JBIDE-9423
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: cdi
Reporter: Alexey Kazakov
Assignee: Alexey Kazakov
Fix For: 3.3.0.M3
This quick fix should offer to Delete @Specializes annotation
Test case:
EXECUTE: Create CDI project
EXECUTE: Create TestBean class
{code}
package org.test;
import javax.enterprise.inject.Specializes;
import javax.interceptor.Interceptor;
@Interceptor
@FooBinding
@Specializes
public class TestBean extends AnyBean{
public String produce(){
return "a";
}
}
{code}
ASSERT: @Specializes annotation should be marked by problem marker
EXECUTE: Point mouse to @Specializes annotation
ASSERT: Text hover with quick fixe appears
EXECUTE: Create TestBean2 class
{code}
package org.test;
import javax.decorator.Decorator;
import javax.decorator.Delegate;
import javax.enterprise.inject.Specializes;
import javax.inject.Inject;
@Decorator
@Specializes
public class TestBean2 extends AnyBean{
@Inject @Delegate @AAnnotation String str;
public String produce(){
return str;
}
}
{code}
ASSERT: @Specializes annotation should be marked by problem marker
EXECUTE: Point mouse to @Specializes annotation
ASSERT: Text hover with quick fixe appears
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 8 months