Need source code of com.atlassian.confluence.plugins.confluence-collaborative-editor-plugin

Hi All!
Is it possible to get the source code of the plugin - com.atlassian.confluence.plugins.confluence-collaborative-editor-plugin
We have one compatibility issue between our InPlace Editor and collaborative editing mode in Confluence. We would like to evaluate the source code of this plugin and check how we can integrate with it.
Does anybody have source code of it? Input from Atlassian team will be greatly appreciated too.
Thanks.

Sincerely, Vadim

10 Likes

This code source is not bundled with the available downloadable Confluence source code.

If you’re creating a server plugin, on build, the code for this plugin will reside at

target/container/tomcat8x/cargo-confluence-home/webapps/confluence/WEB-INF/atlassian-bundled-plugins/confluence-collaborative-editor-plugin-x.y.z.jar

If you looked in there, you would see all the JavaScript (and also the compile Java classes) – of course, the JavaScript source code is already available from your browser dev tools, so no need to do that. :slight_smile:

Thanks for the reply.