-
As a developer, I am used to being able to select a workspace from a list when starting IntelliJ. Current state: Target state: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
First of all the IDEasy workspace can already be selected by the current working directory. If I am not inside an other workspace, then the workspace defaults to IDEasy aims not only to install tools for your project but also to configure them. IntelliJ unfortunately made this very hard for us due to its design:
This is documented for IntelliJ here. Both of that caused severe problems to tame IntelliJ:
As a solution, we redirect all these configuration locations to the selected workspace in your project (by default The disadvantage of this approach is that IDEasy users have to get used to the fact that they open the workspace as root folder in IntelliJ and have their code project(s) in there as sub-folder(s). Further, to activate your project with build tools, like Maven or Gradle, you need to do that manually on the initial setup (until we also have created an automatic project import for IntelliJ): |
Beta Was this translation helpful? Give feedback.
First of all the IDEasy workspace can already be selected by the current working directory. If I am not inside an other workspace, then the workspace defaults to
main
. Simply doicd -w test
(cd $IDE_HOME/workspaces/test
) if you have atest
workspace andide intellij
will launch IntelliJ in thattest
workspace instead.However, if your question is also about the default behaviour of IntelliJ if installed manually and used without IDEasy that asks for the folder to open and that can also be changed in IntelliJ via
File > Open ...
the answer is a little more complex:IDEasy aims not only to install tools for your project but also to configure them. IntelliJ unfortunately made this very hard …