Plugin has EXTREMELY unfriendly error handling (none) in for " FAILED Starting MKS client: no mkscmapi in java.library.path java.lang.UnsatisfiedLinkError: no mkscmapi in java.library.path "
I'm still in the process of improving IDEA 7 integration, especially integration with idea change lists, beginning of this is already committed to the trunk.
Thanks for making the plugin IDEA 7.0 compatible!!
My company is about to upgrade to "MKS Integrity 2006". This version of MKS supposedly supports 'move' and 'rename' refactorings (keeping the archive). This is a major new feature that it would be fantastic to have included in the plugin. I would be willing to contribute development time towards this provided that the plugin is open sourced.
Eric: Would you be willing to open source your plugin so that the user community can provide new features?
Anybody else out there that would be interested in contributing?
Would you consider doing this simple update to make the plug-in compatible with IDEA 7.0? If not: Would you consider open-sourcing your plugin so that the user community can perform this update?
Comments:
any plans to update?
There seems to be some problems with the MKS plugin for Intellij 9, and MKS 2009. Do you plan to upgrade the plugin to support this.
--
Audun
I guess the message could be more explicit of course
FAILED Starting MKS client: no mkscmapi in java.library.path
java.lang.UnsatisfiedLinkError: no mkscmapi in java.library.path
"
but the probability for them to get fixed is much higher if you report them here http://code.google.com/p/ideamksplugin/issues/list
Unfortunately, v 0.6, and future ones will be IDEA 7+ only, unless some people help me with it :)
Version 0.6 on IDEA 6.0 seems to crash with a noclassdef, but 0.5 is working like a champ. Very helpful tool. Thank you!
http://code.google.com/p/ideamksplugin/issues/list
Please feel free to have a look at it :)
I'm still in the process of improving IDEA 7 integration, especially integration with idea change lists, beginning of this is already committed to the trunk.
Regards
Thanks for making the plugin IDEA 7.0 compatible!!
My company is about to upgrade to "MKS Integrity 2006". This version of MKS supposedly supports 'move' and 'rename' refactorings (keeping the archive). This is a major new feature that it would be fantastic to have included in the plugin. I would be willing to contribute development time towards this provided that the plugin is open sourced.
Eric: Would you be willing to open source your plugin so that the user community can provide new features?
Anybody else out there that would be interested in contributing?
Kind regards
Christian
which may solve your problem
I have been a happy user of this plugin for a couple of years. Thanks :)
The plugin is not compatible with IDEA 7.0 because it uses com.intellij.openapi.vcs.VcsManager which has been removed from the 7.0 release.
There is a simple fix for this. Instead of using VcsManager to lookup the current VCS you can do this:
String vcsName = VcsConfiguration.getInstance(myProject).ACTIVE_VCS_NAME;
AbstractVcs abstractVcs = ProjectLevelVcsManager.getInstance(myProject).findVcsByName(vcsName);
Would you consider doing this simple update to make the plug-in compatible with IDEA 7.0? If not: Would you consider open-sourcing your plugin so that the user community can perform this update?
Kind regards
Christian