Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d9d00d7

Browse files
authored
Merge pull request JetBrains#102 from JohnHake/master
IJSDK-50: remove checkout_and_build_community; point to intellij-community/README.md instead
2 parents a2ed757 + e301ee5 commit d9d00d7

File tree

5 files changed

+19
-125
lines changed

5 files changed

+19
-125
lines changed

_SUMMARY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
* [Publishing Your Plugin](tutorials/build_system/deployment.md)
2020
* [Using DevKit](basics/getting_started/using_dev_kit.md)
2121
* [Setting Up a Development Environment](basics/getting_started/setting_up_environment.md)
22-
* [Check Out And Build Community Edition](basics/checkout_and_build_community.md)
2322
* [Creating a Plugin Project](basics/getting_started/creating_plugin_project.md)
2423
* [Creating an Action](basics/getting_started/creating_an_action.md)
2524
* [Running and Debugging a Plugin](basics/getting_started/running_and_debugging_a_plugin.md)

basics/checkout_and_build_community.md

Lines changed: 0 additions & 103 deletions
This file was deleted.

basics/getting_started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ In this section:
1414
* [Publishing Your Plugin](/tutorials/build_system/deployment.md)
1515
* [Developing plugins using DevKit](getting_started/using_dev_kit.md)
1616
* [Setting Up a Development Environment](getting_started/setting_up_environment.md)
17-
* [Check Out And Build Community Edition](basics/checkout_and_build_community.md)
1817
* [Creating a Plugin Project](getting_started/creating_plugin_project.md)
1918
* [Creating an Action](getting_started/creating_an_action.md)
2019
* [Running and Debugging a Plugin](getting_started/running_and_debugging_a_plugin.md)

basics/getting_started/setting_up_environment.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,47 +4,47 @@ title: Setting Up a Development Environment
44

55
### Preliminary Steps
66

7-
Use the following check list to ensure that you are ready to develop your custom plugins.
7+
Use the following checklist to ensure that you are ready to develop your custom plugins.
88

9-
- **IntelliJ IDEA** version 9.0 or later (either Community Edition or Ultimate) must be installed on your computer.
10-
- **IntelliJ IDEA CE source code** should be checked out to your local computer. This is not a requirement but will make it much easier for you to debug your plugins. For detailed instructions, refer to [Check Out And Build Community Edition](/basics/checkout_and_build_community.md).
11-
- **Plugin DevKit** plugin must be enabled in IDE
12-
- **IntelliJ Platform SDK** must be configured for your IDEA project. For more information, see [Configuring IntelliJ Platform SDK](#configuring-intellij-platform-sdk) below.
9+
- **Get IntelliJ IDEA CE source code** on your local computer. Getting IntelliJ IDEA CE source code is not a requirement for plugin development, but having it makes debugging your plugins much easier. For detailed instructions refer to the _Getting IntelliJ IDEA Community Edition Source Code_ section of [Check Out And Build Community Edition](https://github.com/JetBrains/intellij-community/blob/master/README.md). Note that building IntelliJ IDEA CE from source code is not required for plugin development.
10+
- **Plugin DevKit** plugin must be [enabled in IntelliJ IDEA](https://www.jetbrains.com/help/idea/managing-plugins.html)
11+
- **IntelliJ Platform SDK** must be configured for your IDEA project. For more information, see below.
1312

1413
### Configuring IntelliJ Platform SDK
1514

1615
To set up your plugin development environment:
1716

18-
* Check out the source code of IntelliJ IDEA Community Edition as described in
19-
[Check Out And Build Community Edition](/basics/checkout_and_build_community.md).
20-
2117
* Create a new *IntelliJ Platform SDK* under **File \| Project Structure**:
2218

2319
![Create IntelliJ Platform SDK](img/create_intellij_idea_sdk.png)
24-
20+
<br/>
21+
<br/>
2522
* Specify the installation folder of *IntelliJ IDEA Community Edition* as the home directory.
23+
> **warning** You may use IntelliJ IDEA Ultimate as an alternative, but debugging the core code will only work with the *Community Edition*.
2624
2725
![Set Home Directory](img/set_home_directory.png)
28-
29-
* Select the **IDEA jdk** created in [Check Out And Build Community Edition](/basics/checkout_and_build_community.md) as the default Java SDK:
26+
<br/>
27+
<br/>
28+
* Select the **IDEA jdk** as the default Java SDK. See the _IntelliJ Build Configuration_ section of [Check Out And Build Community Edition](https://github.com/JetBrains/intellij-community/blob/master/README.md) for instructions about creating the **IDEA jdk**.
3029

3130
![Set IDEA JDK](img/set_java_sdk.png)
32-
33-
34-
> **warning** You may use IntelliJ IDEA Ultimate as an alternative, but debugging the core code will only work with the *Community Edition*.
35-
31+
<br/>
32+
<br/>
3633
* In the Sourcepath tab of the SDK settings, click the *Add* button:
3734

3835
![Add Sourcepath](img/add_sourcepath.png)
39-
40-
* Specify the directory into which you have checked out the sources of the *Community Edition*:
36+
<br/>
37+
<br/>
38+
* Specify the source code directory for the *IntelliJ IDEA Community Edition*:
4139

4240
![Specify Source Paths](img/community_sources_directory.png)
43-
41+
<br/>
42+
<br/>
4443
* Select **File \| New \| Module** and choose the *IntelliJ Platform Plugin* module type
4544

4645
![IntelliJ Platform Plugin Module](img/intellij_platform_plugin_module.png)
47-
46+
<br/>
47+
<br/>
4848
* Enter your desired plugin name.
4949

5050
* Go to **File \| Project Structure** and select the newly created *IntelliJ Platform SDK* as the default SDK for the plugin module:

basics/getting_started/using_dev_kit.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ own build system. It provides its own SDK type and a set of actions for building
88
In this section:
99

1010
* [Setting Up a Development Environment](setting_up_environment.md)
11-
* [Check Out And Build Community Edition](../checkout_and_build_community.md)
1211
* [Creating a Plugin Project](creating_plugin_project.md)
1312
* [Creating an Action](creating_an_action.md)
1413
* [Running and Debugging a Plugin](running_and_debugging_a_plugin.md)

0 commit comments

Comments
 (0)