-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where does sbt-idea-plugin put source code for external plugins? #54
Comments
After the restart, the IDE was able to pick up the source code for the Scala plugin automatically. |
Hm, |
I completely forgot that I ended up downloading the source code for the Scala plugin myself by cloning the GitHub repo and setting the source code root inside the IDE. |
I've got zio-intellij imported in IntelliJ IDEA and I can access the source code of the Java plugin but not the Scala plugin source code. Something tells me that the Scala plugin comes without any source code when you specify it as a plugin you depend on in your build configuration. |
The Java plugin is a bundled plugin(distributed as a part of IJ IDEA) - therefore its sources are a part of |
Extracted this into a dedicated issue #55 |
For some reason I can't see the source code for the IntelliJ platform when I use the |
the most recent nightly build of Scala plugin should be able to attach IJ sources automatically if |
My
build.sbt
file looks like the following:plugins.sbt
:sbt-idea-plugin
was able to download the IntelliJ Platform SDK and Scala plugin.Unfortunately, I was only able to find source code for the IntelliJ Platform SDK (it was downloaded to
/home/my-plugin/sdk/2019.3.3/sources.zip
and I had to manually set this folder as a source folder inside the IDE) but not for the Scala plugin.Right now it looks like
sbt-idea-plugin
doesn't download source code for external plugins.The text was updated successfully, but these errors were encountered: