opentcs
opentcs copied to clipboard
Rename root project name or change this git repo name.
In settings.gradle:1 we have:
rootProject.name = 'openTCS'
if we clone this repo to local dir, we use
git clone https://github.com/openTCS/opentcs.git
which will create a dir opentcs
in local dir. Well, we will have this issue when compile with gradle embedded in idea 2023.1
gradle java.lang.IllegalStateException: Module entity with name: opentcs should be available
I found the solution here: https://youtrack.jetbrains.com/issue/IDEA-317606/
I rename this folder from opentcs to openTCS and problem solved!
I think you can do one of the following steps:
- Add comment to readme file to tell user clone to a folder named openTCS
- change this repo name to openTCS
- change rootProject.name to openTCS
thanks 😉