I need to access Greenhopper classes from Groovy Runner.
import com.atlassian.greenhopper.model.issue.VersionWrapper issue.getFixVersions().each { version -> def versionWrapper = new VersionWrapper(version) log.debug "Version expected ${versionWrapper.getEndDate()}" }
I get:
Problem loading class: startup failed: /jira-plugins/ProductComponentSync.groovy: 17: unable to resolve class com.atlassian.greenhopper.model.issue.VersionWrapper @ line 17, column 1. import com.atlassian.greenhopper.model.issue.VersionWrapper ^ 1 error
The Reference link: http://docs.atlassian.com/greenhopper/6.0.7/com/atlassian/greenhopper/model/issue/VersionWrapper.html
Here is the correct link to code which solved my problem in custom event listener in Groovy Script Runner:
How to get Greenhopper Start and End date for Version object
Class greenHopperClass = pluginAccessor.getClassLoader().findClass("com.pyxis.greenhopper.GreenHopper"); def greenHopper = componentManager.getOSGiComponentInstanceOfType(greenHopperClass); def ghProjectConfig = greenHopper.getConfiguration(event.getProject()) def endDate = ghProjectConfig.getVersionEndDate(version); def startDate = ghProjectConfig.getVersionStartDate(version);
As Jamie (the author of the Script Runner plugin, thanks Jamie :)) has commented, it's not particularly easy to do this, but you can do it.
Check out this other answers post with some sample Groovy code for getting the class from the plugin classloader, you can then instaniate the class.
Thanks,
Shaun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The link didn't work for some reason, it is https://answers.atlassian.com/questions/73449/using-the-greenhopper-api-to-modify-rank?page=1#73622
Great answer though....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great tip! I need to invoke class constructor though. Here is the code snippet:
Class versionWrapperClass = pluginAccessor.getClassLoader().findClass("com.atlassian.greenhopper.model.issue.VersionWrapper") def versionWrapperConstructor = versionWrapperClass.getConstructor(Version.class) def versionWrapper = versionWrapperConstructor.newInstance(version)
For some reason versionWrapper.getEndDate() returns NULL :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not GH API savvy. I might be using wrong approach to getting GH extension to Version object.
Here is another attempt. Still no luck though.
Class versionWrapperClass = pluginAccessor.getClassLoader().findClass("com.atlassian.greenhopper.model.issue.VersionWrapper") def versionWrapper = componentManager.getOSGiComponentInstanceOfType(versionWrapperClass); Class GHVersionServiceClass = pluginAccessor.getClassLoader().findClass("com.atlassian.greenhopper.service.issue.GHVersionService") def GHversionService = componentManager.getOSGiComponentInstanceOfType(GHVersionServiceClass);
Last line returns null.
versionWrapper = GHversionService?.loadGHVersion(version.getId()) //fails
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
fails in what way? is GHversionService null?
GHversionService is not a component in the plugin.xml, so not sure if you can do getOSGiComponentInstanceOfType on it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
GHversionService is null despite getOSGiComponentInstanceOfType.
I can add a debug log after pluginAccessor.getClassLoader().findClass(
"com.atlassian.greenhopper.service.issue.GHVersionService"
)
to see if it was found
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this code results in [LoggerService] Could not get instance of GHversionService
Class GHVersionServiceClass = pluginAccessor.getClassLoader().findClass("com.atlassian.greenhopper.service.issue.GHVersionService") if (!GHVersionServiceClass) log.debug "GHVersionServiceClass not found" def GHversionService = componentManager.getOSGiComponentInstanceOfType(GHVersionServiceClass); if (!GHversionService) log.debug "Could not get instance of GHversionService"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is no straightforward way. You might be better off writing a new plugin and using component-import and bundle-instructions etc etc. The plugins 2 framework doesn't really allow for the possibility of optionally importing stuff to the classpath at runtime, at least I haven't found a good way to do it.
I recently enhanced the "copy project" function to clone the GH version hierarchy, scrum template, and other GH stuff, and elected to do it through http calls rather than the API. Seems to work fine although if you can use the public API that would be better.
The other way that should work is to modify atlassian-plugin.xml and add the imports you need to the bundle-instructions section, but this is not ideal as it would get overwritten when I update it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.