From 22edb891ce23b48d0d6e31748cec50142ffb60cd Mon Sep 17 00:00:00 2001 From: nik Date: Thu, 3 Nov 2016 14:55:59 +0300 Subject: [PATCH] PluginLayout.plugin: javadoc refined --- .../jetbrains/intellij/build/impl/PluginLayout.groovy | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/PluginLayout.groovy b/platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/PluginLayout.groovy index 875cd88af36c..e78a3810a182 100644 --- a/platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/PluginLayout.groovy +++ b/platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/PluginLayout.groovy @@ -33,11 +33,12 @@ class PluginLayout extends BaseLayout { } /** - * Creates the plugin layout description. The default plugin layout is composed of a jar with name {@code mainModuleName}.jar containing output of - * {@code mainModuleName} module, resources_en.jar containing translatable resources from {@code mainModuleName}, and the module libraries of - * {@code mainModuleName} with scopes 'Compile' and 'Runtime' placed under 'lib' directory in a directory with name {@code mainModuleName}. - * In you need to include additional resources or modules into the plugin layout specify them in {@code body} parameter. If you don't need - * to change the default layout there is no need to call this method at all, it's enough to specify the plugin module in {@link org.jetbrains.intellij.build.ProductModulesLayout#bundledPluginModules bundledPluginModules/pluginModulesToPublish} list. + * Creates the plugin layout description. The default plugin layout is composed of a jar with name {@code mainModuleName}.jar containing + * production output of {@code mainModuleName} module, resources_en.jar containing translatable resources from {@code mainModuleName}, + * and the module libraries of {@code mainModuleName} with scopes 'Compile' and 'Runtime' placed under 'lib' directory in a directory + * with name {@code mainModuleName}. In you need to include additional resources or modules into the plugin layout specify them in + * {@code body} parameter. If you don't need to change the default layout there is no need to call this method at all, it's enough to + * specify the plugin module in {@link org.jetbrains.intellij.build.ProductModulesLayout#bundledPluginModules bundledPluginModules/pluginModulesToPublish} list. * * @param mainModuleName name of the module containing META-INF/plugin.xml file of the plugin */