Dear All,
I have a custom service for Jira. This is working on Jira 4.1.2. But this is not working on Jira 5.0.
I am getting following error durin service add.
Error adding service: com.atlassian.jira.service.ServiceException: Unable to get ObjectConfiguration for Service 'null'
following is my sample code:
public ObjectConfiguration getObjectConfiguration() throws ObjectConfigurationException {
return getObjectConfiguration("issuelink", "services/com/atlassian/jira/service/services/MyIssueLinkService/MyIssueLinkService.xml", null);
}
This is an version 2 Plugin.
Please help.
return getObjectConfiguration("issuelink", "services/com/atlassian/jira/service/services/MyIssueLinkService/MyIssueLinkService.xml", null);
Here you need to write only folders under src/main/resurces
For example
public ObjectConfiguration getObjectConfiguration() throws
ObjectConfigurationException {
return getObjectConfiguration("MYNEWSERVICE", "com/jtricks/
services/myjtricksservice.xml", null);
}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.