We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
depends
Given
Artifact( name = a, libs = Seq.empty, depends = Seq.empty, platform = JVM ), Artifact( name = b, libs = Seq.empty, depends = Seq( a in Scope.Compile.all, ),
b will not depend on a when --js is enabled. only worked around by depending as a in Scope.Compile.jvm
b
a
--js
a in Scope.Compile.jvm
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given
b
will not depend ona
when--js
is enabled. only worked around by depending asa in Scope.Compile.jvm
The text was updated successfully, but these errors were encountered: