Skip to content

Commit

Permalink
Merge pull request #2118 from scalacenter/kpodsiadlo/export-sources-f…
Browse files Browse the repository at this point in the history
…rom-sbt

feat: fallback to `source` and `javadoc` classifiers when exporting projects from sbt
  • Loading branch information
tgodzik committed Jul 18, 2023
2 parents 2fe11bf + d78f889 commit f2dc891
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ object BloopDefaults {
Option(System.getProperty("bloop.export-jar-classifiers"))
.orElse(Option(System.getenv("BLOOP_EXPORT_JAR_CLASSIFIERS")))
.map(_.split(",").toSet)
.orElse(Some(Set("sources", "javadoc")))
},
BloopKeys.bloopInstall := bloopInstall.value,
BloopKeys.bloopAggregateSourceDependencies := true,
Expand Down

0 comments on commit f2dc891

Please sign in to comment.