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 resolve a project that contains a dependency on a bundle package, sbt gen-idea will trigger a resolve and download the bundles twice - into both the jars and bundles directory of the ivy cache:
➜ ~ ls ~/.ivy2/cache/org.apache.tika/tika-parsers/bundles
tika-parsers-1.0.jar
➜ ~ ls ~/.ivy2/cache/org.apache.tika/tika-parsers/jars
tika-parsers-1.0.jar
This is fine, except that when I share the generated libarries files with another user who hasn't run sbt gen-idea, and only run sbt update, they only have the dependency in the bundles directory and not the jars directory.
The text was updated successfully, but these errors were encountered:
Given a project with a dependency that is packaged as a bundle, eg:
(tika-parsers is packaged as a bundle, see http://mvnrepository.com/artifact/org.apache.tika/tika-parsers/1.0)
When I resolve a project that contains a dependency on a bundle package,
sbt gen-idea
will trigger a resolve and download the bundles twice - into both the jars and bundles directory of the ivy cache:This is fine, except that when I share the generated libarries files with another user who hasn't run
sbt gen-idea
, and only runsbt update
, they only have the dependency in the bundles directory and not the jars directory.The text was updated successfully, but these errors were encountered: