Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.3
-
Fix Version/s: 2.6
-
Component/s: AJDT support
-
Labels:None
-
Number of attachments :
Description
With eclipse 3.3 and AJDT 1.5 aspect jars are now configured as an attribute nested inside of the .classpath file's <classpathentry> element Like so:
<classpathentry kind="var" path="M2_REPO/org/springframework/spring-aspects/2.0.5/spring-aspects-2.0.5.jar" sourcepath="M2_REPO/org/springframework/spring-aspects/2.0.5/spring-aspects-2.0.5-sources.jar">
<attributes>
<attribute name="org.eclipse.ajdt.aspectpath" value="true"/>
</attributes>
</classpathentry>
It would be nice if it were possible to add attributes to classpathentry's with some kind of configuration syntax where maybe the dependency artifact and group are specified and then the attributes for that dependency.
Mike
Issue Links
- duplicates
-
MECLIPSE-200
Please add support for the AJDT plugin
-
And with eclipse 3.3, AJDT 1.5 and WTP (to correctly export classpath entry as J2EE Module Dependency) it becomes
<classpathentry kind="var" path="M2_REPO/org/springframework/spring-aspects/2.0.5/spring-aspects-2.0.5.jar">
<attributes>
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
<attribute name="org.eclipse.ajdt.aspectpath" value="true"/>
</attributes>
</classpathentry>
Mike (another one