blob: 116cf61ce5f350c0c7c1322fa128952bafd01784 [file] [log] [blame]
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +01001= IntelliJ Setup
2
3== Prerequisites
4You need an installation of IntelliJ of version 2016.2 or newer.
5
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
46== Run configurations
Alice Kober-Sotzek1e7c17a2016-11-25 13:37:55 +010047Run configurations can be accessed on the toolbar. To edit them or add new ones,
48choose *Edit Configurations* on the drop-down list of the run configurations
49or go to *Run -> Edit Configurations*.
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +010050
51=== Pre-configured run configurations
52
53In order to be able to use the pre-configured run configurations, the following
54steps 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
59shared 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
63value.
64
65The copied run configurations will be added automatically to the available run
66configurations of the IntelliJ project.
67
68==== Gerrit Daemon
69Copy `$(gerrit_source_code)/tools/intellij/gerrit_daemon.xml` to
70`$(project_data_directory)/.idea/runConfigurations/`.
71
72This run configuration starts the Gerrit daemon similarly as
73<<dev-readme#run_daemon,Running the Daemon>>.
74
75NOTE: The <<dev-readme#init,Site Initialization>> has to be completed
76before this run configuration works properly.
Alice Kober-Sotzek1e7c17a2016-11-25 13:37:55 +010077
78=== Unit tests
79To create run configurations for unit tests, run or debug them via a right-click
80on a method, class, file, or package. The created run configuration is a
81temporary one and can be saved to make it permanent.
82
83Normally, this approach generates JUnit run configurations. When the Bazel
84plugin manages a project, it intercepts the creation and creates a Bazel test
85run configuration instead, which can be used just like the standard ones.
86
87TIP: 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
89configuration.