Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 1 | = IntelliJ Setup |
| 2 | |
| 3 | == Prerequisites |
| 4 | You need an installation of IntelliJ of version 2016.2 or newer. |
| 5 | |
| 6 | In addition, Java 8 must be specified on your path or via `JAVA_HOME` so that |
| 7 | building with Bazel via the Bazel plugin is possible. |
| 8 | |
| 9 | TIP: If the synchronization of the project with the BUILD files using the Bazel |
| 10 | plugin fails and IntelliJ reports the error **Could not get Bazel roots**, this |
| 11 | indicates that the Bazel plugin couldn't find Java 8. |
| 12 | |
| 13 | Bazel must be installed as described by |
| 14 | <<dev-bazel#installation,Building with Bazel - Installation>>. |
| 15 | |
| 16 | == Installation of the Bazel plugin |
| 17 | |
| 18 | . Go to *File -> Settings -> Plugins*. |
| 19 | . Click on *Browse Repositories*. |
| 20 | . Search for the plugin `IntelliJ with Bazel`. |
| 21 | . Install it. |
| 22 | . Restart IntelliJ. |
| 23 | |
| 24 | == Creation of IntelliJ project |
| 25 | |
| 26 | . Go to *File -> Import Bazel Project*. |
| 27 | . For *Use existing bazel workspace -> Workspace*, select the directory |
| 28 | containing the Gerrit source code. |
| 29 | . Choose *Import from workspace* and select the `.bazelproject` file which is |
| 30 | located in the top directory of the Gerrit source code. |
| 31 | . Adjust the path of the project data directory and the name of the project if |
| 32 | desired. |
| 33 | |
| 34 | TIP: The project data directory can be separate from the source code. One |
| 35 | advantage of this is that project files don't need to be excluded from version |
| 36 | control. |
| 37 | |
| 38 | Unfortunately, the created project seems to have a broken output path. To fix |
| 39 | it, please complete the following steps: |
| 40 | |
| 41 | . Go to *File -> Project Structure -> Project Settings -> Modules*. |
| 42 | . Switch to the tab *Paths*. |
| 43 | . Click on *Inherit project compile output path*. |
| 44 | . Click on *Use module compile output path*. |
| 45 | |
| 46 | == Run configurations |
Alice Kober-Sotzek | 1e7c17a | 2016-11-25 13:37:55 +0100 | [diff] [blame^] | 47 | Run configurations can be accessed on the toolbar. To edit them or add new ones, |
| 48 | choose *Edit Configurations* on the drop-down list of the run configurations |
| 49 | or go to *Run -> Edit Configurations*. |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 50 | |
| 51 | === Pre-configured run configurations |
| 52 | |
| 53 | In order to be able to use the pre-configured run configurations, the following |
| 54 | steps are necessary: |
| 55 | |
| 56 | . Make sure that the folder `runConfigurations` exists within |
| 57 | `$(project_data_directory)/.idea`. If it doesn't exist, create it. |
| 58 | . Specify the IntelliJ path variable `GERRIT_TESTSITE`. (This configuration is |
| 59 | shared among all IntelliJ projects.) |
| 60 | .. Go to *Settings -> Appearance & Behavior -> Path Variables*. |
| 61 | .. Click on the *+* to add a new path variable. |
| 62 | .. Specify `GERRIT_TESTSITE` as name and the path to your local test site as |
| 63 | value. |
| 64 | |
| 65 | The copied run configurations will be added automatically to the available run |
| 66 | configurations of the IntelliJ project. |
| 67 | |
| 68 | ==== Gerrit Daemon |
| 69 | Copy `$(gerrit_source_code)/tools/intellij/gerrit_daemon.xml` to |
| 70 | `$(project_data_directory)/.idea/runConfigurations/`. |
| 71 | |
| 72 | This run configuration starts the Gerrit daemon similarly as |
| 73 | <<dev-readme#run_daemon,Running the Daemon>>. |
| 74 | |
| 75 | NOTE: The <<dev-readme#init,Site Initialization>> has to be completed |
| 76 | before this run configuration works properly. |
Alice Kober-Sotzek | 1e7c17a | 2016-11-25 13:37:55 +0100 | [diff] [blame^] | 77 | |
| 78 | === Unit tests |
| 79 | To create run configurations for unit tests, run or debug them via a right-click |
| 80 | on a method, class, file, or package. The created run configuration is a |
| 81 | temporary one and can be saved to make it permanent. |
| 82 | |
| 83 | Normally, this approach generates JUnit run configurations. When the Bazel |
| 84 | plugin manages a project, it intercepts the creation and creates a Bazel test |
| 85 | run configuration instead, which can be used just like the standard ones. |
| 86 | |
| 87 | TIP: If you would like to execute a test in NoteDb mode, add |
| 88 | `--test_env=GERRIT_NOTEDB=READ_WRITE` to the *Bazel flags* of your run |
| 89 | configuration. |