Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
|
...
C:\ProgramData\eclipse\eclipse-java
...
Workspaces
It is not recommended to put your code in a workspace directory. A "workspace" in Eclipse is more akin to isolated or "portable" application settings; not a place to store projects.
Warning |
---|
Is is highly discouraged to put code in an Eclipse workspace folder. |
Potential workspace locations:
/home/shadylady/tools/eclipse/workspace
(Linux)C:\ProgramData\eclipse\workspace
(Windows)
Configuration
Application memory
Eclipse will perform terribly unless you give it a few GB of memory (RAM).
In the installation folder, find eclipse.ini
. Ensure is contains the following JVM options:
Code Block |
---|
-Xms512m
-Xmx2g |
The values above are just an example. Scale them to fit your needs. See the official eclipse.ini documentation.
Importing Gradle Projects
...