From f71c32b3dc1bd04330b08dea1efdf7be18bb6a15 Mon Sep 17 00:00:00 2001 From: Anna Bulenkova Date: Wed, 3 Dec 2014 18:04:09 +0100 Subject: [PATCH] Plugin configuration file overview --- tutorials/plugin_xml_overview.md | 100 +++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) diff --git a/tutorials/plugin_xml_overview.md b/tutorials/plugin_xml_overview.md index 5a91fbd12..258734953 100644 --- a/tutorials/plugin_xml_overview.md +++ b/tutorials/plugin_xml_overview.md @@ -1,2 +1,102 @@ Plugin configuration file ======= +The main plugin functionality description should be placed in META_INF/plugin.xml +This configuration file contains description, components, information about dependencies and user-defined extension points + + + Tutorial + Basic plugin example + 1.0 + JetBrains + Samples + JetBrains + + most HTML tags may be used + ]]> + + most HTML tags may be used + ]]> + + + + + + + + com.intellij.modules.lang + + CustomPlugin + + + + + + + + + org.jetbrains.plugins.sample.PluginSampleBundle + + + + + + org.jetbrains.plugins.sample.DummyApplicationComponent + + org.jetbrains.plugins.sample.DummyApplicationComponentImpl + + + + + + + + org.jetbrains.plugins.sample.DummyProjectComponent + org.jetbrains.plugins.sample.DummyProjectComponentImpl + + + + + + + + + org.jetbrains.plugins.sample.DummyModuleComponent + org.jetbrains.plugins.sample.DummyModuleComponentImpl + + + + + + + + + + + + + + + + + + + + + +-------------------- + +[Link to repository](https://github.com/JetBrains/intellij-community/blob/master/plugins/devkit/resources/META-INF/plugin.xml) + + +