blob: 9b8f7a06f1bcf8e24f608800cf48bf19bf5f544d [file] [log] [blame]
Alice Kober-Sotzek55332812016-12-07 15:12:14 +01001= Gerrit Code Review - IntelliJ Setup
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +01002
3== Prerequisites
Luca Milanesio17158182016-12-16 07:23:12 +00004You need an installation of IntelliJ of version 2016.2.
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +01005
6In addition, Java 8 must be specified on your path or via `JAVA_HOME` so that
7building with Bazel via the Bazel plugin is possible.
8
9TIP: If the synchronization of the project with the BUILD files using the Bazel
10plugin fails and IntelliJ reports the error **Could not get Bazel roots**, this
11indicates that the Bazel plugin couldn't find Java 8.
12
13Bazel 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
28containing the Gerrit source code.
29. Choose *Import from workspace* and select the `.bazelproject` file which is
30located 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
32desired.
33
34TIP: The project data directory can be separate from the source code. One
35advantage of this is that project files don't need to be excluded from version
36control.
37
38Unfortunately, the created project seems to have a broken output path. To fix
39it, 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-Sotzek74d2f5b2016-11-25 14:04:53 +010046== Recommended settings
47
48=== Code style
Alice Kober-Sotzek0b257d82017-03-02 11:58:36 +010049
50==== google-java-format plugin
51Install 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
59Every time you start IntelliJ, make sure to use *Code -> Reformat with
60google-java-format* on an arbitrary line of code. This replaces the default
61CodeStyleManager with a custom one. Thus, uses of *Reformat Code* either via
62*Code -> Reformat Code*, keyboard shortcuts, or the commit dialog will use the
63custom style defined by the `google-java-format` plugin.
64
65==== Code style settings
66The `google-java-format` plugin is the preferred way to format the code. As it
67only kicks in on demand, it's also recommended to have code style settings
68which help to create properly formatted code as-you-go. Those settings can't
69completely mimic the format enforced by the `google-java-format` plugin but try
70to be as close as possible. So before submitting code, please make sure to run
71*Reformat Code*.
72
73. Download
74https://raw.githubusercontent.com/google/styleguide/gh-pages/intellij-java-google-style.xml[
75intellij-java-google-style.xml].
Alice Kober-Sotzek74d2f5b2016-11-25 14:04:53 +010076. Go to *File -> Settings -> Editor -> Code Style*.
77. Click on *Manage*.
78. Click on *Import*.
79. Choose `IntelliJ IDEA Code Style XML`.
Alice Kober-Sotzek0b257d82017-03-02 11:58:36 +010080. Select the previously downloaded file `intellij-java-google-style.xml`.
81. Make sure that `Google Style` is chosen as *Scheme*.
Alice Kober-Sotzek74d2f5b2016-11-25 14:04:53 +010082
83In addition, the EditorConfig settings (which ensure a consistent style between
84Eclipse, IntelliJ, and other editors) should be applied on top of that. Those
85settings are in the file `.editorconfig` of the Gerrit source code. IntelliJ
86will automatically pick up those settings if the EditorConfig plugin is enabled
87and 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
94NOTE: If IntelliJ notifies you later on that the EditorConfig settings override
95the code style settings, simply confirm that.
96
Alice Kober-Sotzekb11a0752016-11-25 16:08:43 +010097=== Copyright
98Copy the folder `$(gerrit_source_code)/tools/intellij/copyright` (not just the
99contents) to `$(project_data_directory)/.idea`. If it already exists, replace
100it.
101
102=== File header
103By default, IntelliJ adds a file header containing the name of the author and
104the 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-Sotzek6af5c3b2016-11-25 15:22:38 +0100111=== Commit message
112To 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
120In addition, you should follow the instructions of
121<<dev-contributing#git_commit_settings,this section>> (if you haven't
122done so already):
123
124* Install the Git hook for the `Change-Id` line.
125* Set up the HTTP access.
126
127Setting up the HTTP access will allow you to commit changes via IntelliJ without
128specifying your credentials. The Git hook won't be noticeable during a commit
129as it's executed after the commit dialog of IntelliJ was closed.
130
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +0100131== Run configurations
Alice Kober-Sotzek1e7c17a2016-11-25 13:37:55 +0100132Run configurations can be accessed on the toolbar. To edit them or add new ones,
133choose *Edit Configurations* on the drop-down list of the run configurations
134or go to *Run -> Edit Configurations*.
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +0100135
136=== Pre-configured run configurations
137
138In order to be able to use the pre-configured run configurations, the following
139steps 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
144shared 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
148value.
149
150The copied run configurations will be added automatically to the available run
151configurations of the IntelliJ project.
152
153==== Gerrit Daemon
154Copy `$(gerrit_source_code)/tools/intellij/gerrit_daemon.xml` to
155`$(project_data_directory)/.idea/runConfigurations/`.
156
157This run configuration starts the Gerrit daemon similarly as
158<<dev-readme#run_daemon,Running the Daemon>>.
159
160NOTE: The <<dev-readme#init,Site Initialization>> has to be completed
161before this run configuration works properly.
Alice Kober-Sotzek1e7c17a2016-11-25 13:37:55 +0100162
163=== Unit tests
164To create run configurations for unit tests, run or debug them via a right-click
165on a method, class, file, or package. The created run configuration is a
166temporary one and can be saved to make it permanent.
167
168Normally, this approach generates JUnit run configurations. When the Bazel
169plugin manages a project, it intercepts the creation and creates a Bazel test
170run configuration instead, which can be used just like the standard ones.
171
172TIP: 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
174configuration.
Alice Kober-Sotzek55332812016-12-07 15:12:14 +0100175
176GERRIT
177------
178Part of link:index.html[Gerrit Code Review]
179
180SEARCHBOX
181---------