forked from apache/lucene
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIDEs.txt
More file actions
58 lines (39 loc) · 1.14 KB
/
IDEs.txt
File metadata and controls
58 lines (39 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
IntelliJ IDEA
=============
Importing the project as a gradle project should just run out of the box.
Eclipse
=======
Run the following to set up Eclipse project files:
./gradlew eclipse
then import the project into Eclipse with:
File -> Import... -> Existing Project into Workspace
Please note that Eclipse does not distinguish between sub-projects
and package sets (main/ test) so pretty much all the sources and dependencies
are available in one large bin.
VSCode
======
Run the following to set up Eclipse project files:
./gradlew eclipse
Open the lucene checkout in VSCode.
Neovim
======
Run the following to set up Eclipse project files:
./gradlew eclipse
Install jdtls: https://projects.eclipse.org/projects/eclipse.jdt.ls
Create lsp/jdtls.lua, see https://github.com/neovim/nvim-lspconfig for example.
Modify lsp/jdtls.lua to disable gradle/maven integration:
init_options = {
settings = {
java = {
import = {
gradle = {
enabled = false,
},
maven = {
enabled = false,
},
},
},
},
},
Enable 'jdtls' language server with vim.lsp.enable()