You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I link my projects together in a certain way, sbt produces this error when running sbt eclipse.
[info] About to create Eclipse project files for your project(s).
[error] a required artifact is not listed by module descriptor: *#*!*.*
[error] a required artifact is not listed by module descriptor: *#*!*.*
[error] a required artifact is not listed by module descriptor: *#*!*.*
[error] a required artifact is not listed by module descriptor: *#*!*.*
[error] a required artifact is not listed by module descriptor: *#*!*.*
[error] a required artifact is not listed by module descriptor: *#*!*.*
...
Everything else works fine, compiling, building assemblies,... Even the project generation doesn't seem to suffer.
One special thing about the projects is that they transitively depend on other modules in the project.
Say my project has 5 modules, mA, mB, mC, mD, mE.
And one extnernal dependency (which can be used both as a source as a binary dependency) d1.
They depend like this.
mA <- mB <- mC <- mD -
^ ` <- mE - `
| |
` d1 < -------´
It goes sour in modules D and E, but if I look at the dependency tree everything looks as expected (e.g. version conflicts are resolved as expected).
One thing I might add is that I systemically use EclipseKeys.withSource := true.
And when I run sbt updateSbtClassifiers, I get a somewhat unexpected failed download:
I will note, the latter was observed by trying pretty much anything, without any success.
As stated, everything works, I'd just like to get some understanding why it produces the error and ideally how to avoid it, as seeing errors from "build output" hurts the eyes.
sbt: 1.1.4
sbt-eclipse: 5.2.4
scala: 2.12.5
The text was updated successfully, but these errors were encountered:
When I link my projects together in a certain way, sbt produces this error when running
sbt eclipse
.Everything else works fine, compiling, building assemblies,... Even the project generation doesn't seem to suffer.
One special thing about the projects is that they transitively depend on other modules in the project.
Say my project has 5 modules, mA, mB, mC, mD, mE.
And one extnernal dependency (which can be used both as a source as a binary dependency) d1.
They depend like this.
It goes sour in modules D and E, but if I look at the dependency tree everything looks as expected (e.g. version conflicts are resolved as expected).
One thing I might add is that I systemically use
EclipseKeys.withSource := true
.And when I run
sbt updateSbtClassifiers
, I get a somewhat unexpected failed download:I will note, the latter was observed by trying pretty much anything, without any success.
As stated, everything works, I'd just like to get some understanding why it produces the error and ideally how to avoid it, as seeing errors from "build output" hurts the eyes.
sbt: 1.1.4
sbt-eclipse: 5.2.4
scala: 2.12.5
The text was updated successfully, but these errors were encountered: