Check prerequisites in plugin.xml
![]()
AMEYA KALE (17●6)
| asked May 10 '19, 2:20 a.m.
edited May 10 '19, 2:37 a.m. by Ralph Schoon (62.7k●3●36●43) 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
the information you provided is useless. Would it be too much to ask for the actual error message you see in the log?
I tried each and every way for solving the above issue,still no luck.Its my humble request to look into this issue and try to find what's gone wrong.
The error message in the Eclipse debug console actually tells you the offending prerequisite, or gives at least new hints. If you debug on Jetty, you need to restart the server to make the change in the XML recognized.