[build] remove pycharm_basics from composite build

This commit is contained in:
Yann Cébron 2020-05-28 19:03:21 +02:00
parent fd121cfd9c
commit b0b8f90aec
4 changed files with 4 additions and 8 deletions

7
.idea/gradle.xml generated
View File

@ -62,11 +62,6 @@
<project path="$PROJECT_DIR$/code_samples/module" />
</projects>
</build>
<build path="$PROJECT_DIR$/code_samples/product_specific/pycharm_basics" name="pycharm">
<projects>
<project path="$PROJECT_DIR$/code_samples/product_specific/pycharm_basics" />
</projects>
</build>
<build path="$PROJECT_DIR$/code_samples/project_model" name="project_model">
<projects>
<project path="$PROJECT_DIR$/code_samples/project_model" />
@ -133,7 +128,6 @@
<option value="$PROJECT_DIR$/code_samples/live_templates" />
<option value="$PROJECT_DIR$/code_samples/max_opened_projects" />
<option value="$PROJECT_DIR$/code_samples/module" />
<option value="$PROJECT_DIR$/code_samples/product_specific/pycharm_basics" />
<option value="$PROJECT_DIR$/code_samples/project_model" />
<option value="$PROJECT_DIR$/code_samples/project_view_pane" />
<option value="$PROJECT_DIR$/code_samples/project_wizard" />
@ -145,7 +139,6 @@
<option value="$PROJECT_DIR$/code_samples/tree_structure_provider" />
</set>
</option>
<option name="useQualifiedModuleNames" value="true" />
</GradleProjectSettings>
</option>
</component>

View File

@ -15,7 +15,6 @@ includeBuild '../kotlin_demo'
includeBuild '../live_templates'
includeBuild '../max_opened_projects'
includeBuild '../module'
includeBuild '../product_specific/pycharm_basics'
includeBuild '../project_model'
includeBuild '../project_view_pane'
includeBuild '../project_wizard'

View File

@ -0,0 +1,3 @@
## Product Specific Code Samples
Please note, all samples in this folder must be imported into Gradle explicitly as they're not included in the default Gradle composite build.

View File

@ -23,6 +23,7 @@ The dependency on the PyCharm APIs must be declared in the `plugin.xml` file.
As described in [Configuring the plugin.xml File](dev_alternate_products.md#configuring-pluginxml), the `<depends>` tags must declare `com.intellij.modules.python`.
See the SDK code sample [`pycharm_basics`](https://github.com/JetBrains/intellij-sdk-docs/tree/master/code_samples/product_specific/pycharm_basics/) for an example configuration.
Please note that this code sample must be imported into Gradle explicitly, as it is not included in the `_gradleCompositeBuild`.
## Available PyCharm APIs
The plugin [Python](https://plugins.jetbrains.com/plugin/631-python) defines the APIs for PyCharm Professional.