Alice Kober-Sotzek | 5533281 | 2016-12-07 15:12:14 +0100 | [diff] [blame] | 1 | = Gerrit Code Review - IntelliJ Setup |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 2 | |
| 3 | == Prerequisites |
Luca Milanesio | 1715818 | 2016-12-16 07:23:12 +0000 | [diff] [blame] | 4 | You need an installation of IntelliJ of version 2016.2. |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 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 | |
Alice Kober-Sotzek | 74d2f5b | 2016-11-25 14:04:53 +0100 | [diff] [blame] | 46 | == Recommended settings |
| 47 | |
| 48 | === Code style |
Alice Kober-Sotzek | 0b257d8 | 2017-03-02 11:58:36 +0100 | [diff] [blame^] | 49 | |
| 50 | ==== google-java-format plugin |
| 51 | Install the `google-java-format` plugin by following these steps: |
| 52 | |
| 53 | . Go to *File -> Settings -> Plugins*. |
| 54 | . Click on *Browse Repositories*. |
| 55 | . Search for the plugin `google-java-format`. |
| 56 | . Install it. |
| 57 | . Restart IntelliJ. |
| 58 | |
| 59 | Every time you start IntelliJ, make sure to use *Code -> Reformat with |
| 60 | google-java-format* on an arbitrary line of code. This replaces the default |
| 61 | CodeStyleManager with a custom one. Thus, uses of *Reformat Code* either via |
| 62 | *Code -> Reformat Code*, keyboard shortcuts, or the commit dialog will use the |
| 63 | custom style defined by the `google-java-format` plugin. |
| 64 | |
| 65 | ==== Code style settings |
| 66 | The `google-java-format` plugin is the preferred way to format the code. As it |
| 67 | only kicks in on demand, it's also recommended to have code style settings |
| 68 | which help to create properly formatted code as-you-go. Those settings can't |
| 69 | completely mimic the format enforced by the `google-java-format` plugin but try |
| 70 | to be as close as possible. So before submitting code, please make sure to run |
| 71 | *Reformat Code*. |
| 72 | |
| 73 | . Download |
| 74 | https://raw.githubusercontent.com/google/styleguide/gh-pages/intellij-java-google-style.xml[ |
| 75 | intellij-java-google-style.xml]. |
Alice Kober-Sotzek | 74d2f5b | 2016-11-25 14:04:53 +0100 | [diff] [blame] | 76 | . Go to *File -> Settings -> Editor -> Code Style*. |
| 77 | . Click on *Manage*. |
| 78 | . Click on *Import*. |
| 79 | . Choose `IntelliJ IDEA Code Style XML`. |
Alice Kober-Sotzek | 0b257d8 | 2017-03-02 11:58:36 +0100 | [diff] [blame^] | 80 | . Select the previously downloaded file `intellij-java-google-style.xml`. |
| 81 | . Make sure that `Google Style` is chosen as *Scheme*. |
Alice Kober-Sotzek | 74d2f5b | 2016-11-25 14:04:53 +0100 | [diff] [blame] | 82 | |
| 83 | In addition, the EditorConfig settings (which ensure a consistent style between |
| 84 | Eclipse, IntelliJ, and other editors) should be applied on top of that. Those |
| 85 | settings are in the file `.editorconfig` of the Gerrit source code. IntelliJ |
| 86 | will automatically pick up those settings if the EditorConfig plugin is enabled |
| 87 | and configured correctly as can be verified by: |
| 88 | |
| 89 | . Go to *File -> Settings -> Plugins*. |
| 90 | . Ensure that the EditorConfig plugin is enabled. |
| 91 | . Go to *File -> Settings -> Editor -> Code Style*. |
| 92 | . Ensure that *Enable EditorConfig support* is checked. |
| 93 | |
| 94 | NOTE: If IntelliJ notifies you later on that the EditorConfig settings override |
| 95 | the code style settings, simply confirm that. |
| 96 | |
Alice Kober-Sotzek | b11a075 | 2016-11-25 16:08:43 +0100 | [diff] [blame] | 97 | === Copyright |
| 98 | Copy the folder `$(gerrit_source_code)/tools/intellij/copyright` (not just the |
| 99 | contents) to `$(project_data_directory)/.idea`. If it already exists, replace |
| 100 | it. |
| 101 | |
| 102 | === File header |
| 103 | By default, IntelliJ adds a file header containing the name of the author and |
| 104 | the current date to new files. To disable that, follow these steps: |
| 105 | |
| 106 | . Go to *File -> Settings -> Editor -> File and Code Templates*. |
| 107 | . Select the tab *Includes*. |
| 108 | . Select *File Header*. |
| 109 | . Remove the template code in the right editor. |
| 110 | |
Alice Kober-Sotzek | 6af5c3b | 2016-11-25 15:22:38 +0100 | [diff] [blame] | 111 | === Commit message |
| 112 | To simplify the creation of commit messages which are compliant with the |
| 113 | <<dev-contributing#commit-message,Commit Message>> format, do the following: |
| 114 | |
| 115 | . Go to *File -> Settings -> Version Control*. |
| 116 | . Check *Commit message right margin (columns)*. |
| 117 | . Make sure that 72 is specified as value. |
| 118 | . Check *Wrap when typing reaches right margin*. |
| 119 | |
| 120 | In addition, you should follow the instructions of |
| 121 | <<dev-contributing#git_commit_settings,this section>> (if you haven't |
| 122 | done so already): |
| 123 | |
| 124 | * Install the Git hook for the `Change-Id` line. |
| 125 | * Set up the HTTP access. |
| 126 | |
| 127 | Setting up the HTTP access will allow you to commit changes via IntelliJ without |
| 128 | specifying your credentials. The Git hook won't be noticeable during a commit |
| 129 | as it's executed after the commit dialog of IntelliJ was closed. |
| 130 | |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 131 | == Run configurations |
Alice Kober-Sotzek | 1e7c17a | 2016-11-25 13:37:55 +0100 | [diff] [blame] | 132 | Run configurations can be accessed on the toolbar. To edit them or add new ones, |
| 133 | choose *Edit Configurations* on the drop-down list of the run configurations |
| 134 | or go to *Run -> Edit Configurations*. |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 135 | |
| 136 | === Pre-configured run configurations |
| 137 | |
| 138 | In order to be able to use the pre-configured run configurations, the following |
| 139 | steps are necessary: |
| 140 | |
| 141 | . Make sure that the folder `runConfigurations` exists within |
| 142 | `$(project_data_directory)/.idea`. If it doesn't exist, create it. |
| 143 | . Specify the IntelliJ path variable `GERRIT_TESTSITE`. (This configuration is |
| 144 | shared among all IntelliJ projects.) |
| 145 | .. Go to *Settings -> Appearance & Behavior -> Path Variables*. |
| 146 | .. Click on the *+* to add a new path variable. |
| 147 | .. Specify `GERRIT_TESTSITE` as name and the path to your local test site as |
| 148 | value. |
| 149 | |
| 150 | The copied run configurations will be added automatically to the available run |
| 151 | configurations of the IntelliJ project. |
| 152 | |
| 153 | ==== Gerrit Daemon |
| 154 | Copy `$(gerrit_source_code)/tools/intellij/gerrit_daemon.xml` to |
| 155 | `$(project_data_directory)/.idea/runConfigurations/`. |
| 156 | |
| 157 | This run configuration starts the Gerrit daemon similarly as |
| 158 | <<dev-readme#run_daemon,Running the Daemon>>. |
| 159 | |
| 160 | NOTE: The <<dev-readme#init,Site Initialization>> has to be completed |
| 161 | before this run configuration works properly. |
Alice Kober-Sotzek | 1e7c17a | 2016-11-25 13:37:55 +0100 | [diff] [blame] | 162 | |
| 163 | === Unit tests |
| 164 | To create run configurations for unit tests, run or debug them via a right-click |
| 165 | on a method, class, file, or package. The created run configuration is a |
| 166 | temporary one and can be saved to make it permanent. |
| 167 | |
| 168 | Normally, this approach generates JUnit run configurations. When the Bazel |
| 169 | plugin manages a project, it intercepts the creation and creates a Bazel test |
| 170 | run configuration instead, which can be used just like the standard ones. |
| 171 | |
| 172 | TIP: If you would like to execute a test in NoteDb mode, add |
| 173 | `--test_env=GERRIT_NOTEDB=READ_WRITE` to the *Bazel flags* of your run |
| 174 | configuration. |
Alice Kober-Sotzek | 5533281 | 2016-12-07 15:12:14 +0100 | [diff] [blame] | 175 | |
| 176 | GERRIT |
| 177 | ------ |
| 178 | Part of link:index.html[Gerrit Code Review] |
| 179 | |
| 180 | SEARCHBOX |
| 181 | --------- |