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? 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
I have this schema:
lazy val C = project .dependsOn(A, B).settings( (projectID in A).value exclude("commons-logging", "commons-logging"), (projectID in B).value exclude("commons-logging", "commons-logging") exclude("commons-codec", "commons-codec"), .... )
But sbt-pack processes commons-logging, even though there is no other source of it. I know because I'm using the dependencyTree task from this plugin:
sbt-pack
commons-logging
dependencyTree
addSbtPlugin("com.gilt" % "sbt-dependency-graph-sugar" % "0.7.4")
I expect commons-logging not to be copied with the C/pack task.
C/pack
The text was updated successfully, but these errors were encountered:
xerial
No branches or pull requests
I have this schema:
But
sbt-pack
processescommons-logging
, even though there is no other source of it. I know because I'm using thedependencyTree
task from this plugin:I expect
commons-logging
not to be copied with theC/pack
task.The text was updated successfully, but these errors were encountered: