Check prerequisites in plugin.xml
By going through some links based on the above error,I figured out the prerequisites are missing in plugin.xml.
I added those which are required.
Below is the code change which I made in plugin.xml
<prerequisites>
<requiredService interface="com.ibm.team.repository.common.service.IWorkItemServer"/>
</prerequisites>
Still getting the Check prerequisites in plugin.xml
Following is the whole plugin.xml
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="com.ibm.team.process.service.operationParticipants">
<operationParticipant
class="follow_upplugin.OperationParticipant3"
id="Follow_UpPlugin.operationParticipant3"
name="follow_UpPlugin"
operationId="com.ibm.team.workitem.operation.workItemSave">
<prerequisites>
<requiredService interface="com.ibm.team.repository.common.service.IWorkItemServer"/>
</prerequisites>
</operationParticipant>
</extension>
</plugin>
Comments
Ralph Schoon
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER May 10 '19, 2:39 a.m.AMEYA KALE
May 10 '19, 2:48 a.m.Ralph Schoon
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER May 10 '19, 2:56 a.m.