Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Duplicate
-
2.5
-
None
-
None
-
Windows, RAD 7.0.0.5
-
Patch
Description
The eclipse:eclipse or eclipse:rad goals generate jst.java Facets like :
<faceted-project>
<fixed facet="jst.java"/>
<runtime name="WebSphere Application Server v6.1"/>
<installed facet="com.ibm.websphere.extended.ear" version="6.1"/>
<installed facet="com.ibm.websphere.coexistence.ear" version="6.1"/>
<fixed facet="jst.ear"/>
<installed facet="jst.ear" version="1.4"/>
<installed facet="jst.java" version="5.0"/>
</faceted-project>
This facets aren't necessary for EAR artifacts in RAD, brings it in a strange state and kills my workspace. The side effects are particularly annoying in the debug mode, where on every step an error message pop-ups. The maven-eclipse-plugin must avoid this facets and generate them like following:
<faceted-project>
<runtime name="WebSphere Application Server v6.1"/>
<installed facet="com.ibm.websphere.extended.ear" version="6.1"/>
<installed facet="com.ibm.websphere.coexistence.ear" version="6.1"/>
<fixed facet="jst.ear"/>
<installed facet="jst.ear" version="1.4"/>
</faceted-project>
I think you have done a great work with the recent 2.5 release. Just need to have fixed this. Thanks for everything.
Attachments
Attachments
Issue Links
- depends upon
-
MECLIPSE-266 plugin applies java facet to ear project
- Closed