LinkType Extension not active in eclipse client
Hi everyone,
I made a simple LinkType Extension and installed it to my server and it's working great (I can select the new LinkTypes in the Web-UI with no problems)
Then I installed the extension to my eclipse client, and it's there in installed softwares and it's in my plugin registry, but it doesn't work. I suspect because it never activates, because when I switch my plugin registry to only show active plugins, it disappears.
So my question is:
How do I get my custom LinkType extension to activate?
Thanks
3 answers
Your client-side plugin has something like this?
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="com.ibm.team.repository.common.linkTypes">
<linkType
constrained="false"
id="com.hnc.team.link.reviewedby"
internal="false">
<target>
<endpoint
displayName="Reviews"
icon="icons/reviews.gif"
id="com.hnc.team.link.reviews"
multiplicity="0..n">
<itemReferenceType
itemTypeName="WorkItem"
packageURI="com.ibm.team.workitem">
</itemReferenceType>
</endpoint>
</target>
<source>
<endpoint
displayName="Reviewed By"
icon="icons/reviewProvider.gif"
id="com.hnc.team.link.reviewedby"
multiplicity="0..n">
<itemReferenceType
itemTypeName="WorkItem"
packageURI="com.ibm.team.workitem">
</itemReferenceType>
</endpoint>
</source>
</linkType>
</extension>
</plugin>