trying to update an internal plugin (just support some fields generated with scala macros) for 2019.1-beta.
have tried sbt-idea-plugin 2.1.3, 2.3.0, and 2.3.1. My only external dependency is the Scala plugin. This dependency doesn't work, because:
it is extracted into the plugins directory instead of the externalPlugins directory, meaning ideaExternalPluginsJars doesn't pick up any jars
the scala plugin is extracted into a Scala directory, even though it already has a top-level Scala directory in the zip - so there's nothing in Scala/lib for ideaExternalPluginsJars to find - it's in Scala/Scala/lib
trying to update an internal plugin (just support some fields generated with scala macros) for 2019.1-beta.
have tried sbt-idea-plugin 2.1.3, 2.3.0, and 2.3.1. My only external dependency is the Scala plugin. This dependency doesn't work, because:
it is extracted into the plugins directory instead of the
externalPlugins
directory, meaningideaExternalPluginsJars
doesn't pick up any jars the scala plugin is extracted into a Scala directory, even though it already has a top-level Scala directory in the zip - so there's nothing inScala/lib
forideaExternalPluginsJars
to find - it's inScala/Scala/lib
@codingismy11to7