SCM ignores our plugin after upgrade to 4.0.5 from 4.0.0.1
Mike Philpot (3●2●4)
| asked Mar 04 '15, 3:25 p.m.
edited Mar 05 '15, 4:57 a.m. by Ralph Schoon (63.5k●3●36●46)
We have a plugin under scmtools/eclipse/plugin that extends scm. It was working fine before we upgraded our RTC eclipse client to v4.0.5. Now scm does not "see" the plugin and does not load it.
'scm -clean -v' with RTC v4.0.0.1 shows our plugin as loaded and the list of subcommands it adds. The same command with v4.0.5 returns only the standard plugins that are loaded with the default deployment. Our plugin is ignored and is not listed in the output of loaded plugins. Can anyone think of anything we are missing or might have misconfigured. In the past, we've occasionally encountered minor issues with changes to the JAVA API that necessitated changes to our plugin, but it has never failed to load before. I can't imagine that our plugin is now incompatible going from 4.0.0.1 to 4.0.5. Even running with the -debug -consoleLog flags gives no useful clues. Our plugin does not show up at all in that output either; so, I am leaning toward some config problem. Is there some new config file or setting(s) that 4.0.5 needs for plugins that 4.0.0.1 does not? Thanks. |
5 answers
Evan Hughes (2.4k●13●18)
| answered Mar 05 '15, 10:42 a.m.
JAZZ DEVELOPER edited Mar 09 '15, 9:30 a.m.
I've had success checking to see why a bundle didn't load using the OSGi console. The CLI makes that hard, since it eats the stdin, but you can tell OSGi to provide a console on a port by adding 'osgi.console=9999
After doing that:
Comments
kanjbala jawahar
commented Mar 06 '15, 12:47 a.m.
We are novice here Evan. So please give more details on how to go about doing what you are suggesting.
I've edited the answer to be more explicit. Does it provide enough information? |
if you look at your plugin build, META.INF, are the dependencies marked with specific versions?
If so, this can cause your plugin to not load, silently. Comments
Mike Philpot
commented Mar 05 '15, 6:27 a.m.
Thanks for the suggestion.
Ralph Schoon
commented Mar 05 '15, 6:32 a.m.
| edited Mar 05 '15, 6:32 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
I'd suggest to check in the pulgin.xml and to make sure that this is the minimal version and not the specific version - or remove the versions altogether. This makes sure that the version numbers don't mismatch.
Mike Philpot
commented Mar 05 '15, 7:30 a.m.
Thanks. Just double checked the plugin.xml. I don't see anything that should override the default. This is the only line that I guess could affect it:
|
Ralph Schoon (63.5k●3●36●46)
| answered Mar 05 '15, 4:56 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
Has the plugin been deployed to the new version of the SCM tools?
As far as I am aware there have been no drastic changes to the API and if there were, you should see errors in the log files and not nothing. Comments
Mike Philpot
commented Mar 05 '15, 6:08 a.m.
Yeah, I agree that this is not related to the API. This is a problem with loading the plugin. It is some kind of config problem. We've got the plugin in the scmtools/eclipse/plugins directory like normal. But for whatever reason it is not being loaded at all. We are stumped at the moment.
|
So, to Ralph, Sam and others:
(I work with Mike Phllpot and am working on this issue with him.) 1. This is an API issue, albeit internal API (more on this below). 2. We have extended SCM and a vast amount of interfaces have been changed between 4.0.0.1 to 4.0.5. Our plugin extends the extension point com.ibm.team.filesystem.cli.core.subcommand and all of those packages/interfaces have been moved around (changed a lot) in 4.0.5. We are extending, so we have no choice but to use internal APIs. Having said that, can RTC folks/experts help us get out of this hole? I went through the packages and decided that the extension point would now be: com.ibm.team.rtc.cli.infrastructure.subcommand I don't know if that is correct though, based on what I went over that seemed to be the right way to go. After that I reduced the size of my code to bare minimum and fixed the compilation errors and exported the jar to the <RTC-Cliet-dir>/jazz/scmtools/eclipse location (eclipse automatically puts it under plugins). Next I ran "scm -clean" followed by "scm -v" but I don't see my bundle. What I should see is something like this: (showing what I see in 4.0.0.1) C:\RTC-Client-Win-4.0.0.1\jazz\scmtools\eclipse>scm -v Build Id: RTC-I20120911-1740 com.ibm.team.filesystem.cli.client, version 3.1.100.v20120817_2130 Subcommands: load login logout create create/workspace create/baseline create/changeset create/snapshot <removed some stuff> com.ibm.team.filesystem.cli.tools, version 3.1.100.v20120817_2130 Subcommands: tools.verify tools.validate tools.echo.stdin tools.metronome tools.pkgtest tools.configvalue tools.log com.ibm.team.filesystem.cli.core, version 3.1.100.v20120822_0505 Subcommands: help version daemon daemon/start daemon/stop daemon/deregister daemon/register com.ibm.mrbuild.rtc.cli, version 2.0.0.kishore_final3 <<===== My plugin extension. Subcommands: mrbuild mrbuild/approveworkitem mrbuild/comparesnapshots mrbuild/createsnapshot mrbuild/extractsnapshots mrbuild/mapsnapshots <removed more stuff> C:\RTC-Client-Win-4.0.0.1\jazz\scmtools\eclipse> Thanks in advance for your help. |
So we finally figured it out.
I will add more for others here later, but for now: --the extension point that I replaced with is correct and is working now. The underlying API was changed vastly and moved around into different packages/interfaces. But since we are hooking into the subcommand interfaces we have to pay this price until we move on to a more reliable solution. |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.