This is an automated email from the ASF dual-hosted git repository.
slawrence pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-daffodil.git
The following commit(s) were added to refs/heads/master by this push:
new e42d45e Disable Coursier for library management
e42d45e is described below
commit e42d45e31a03418ec953dcfc54fb334aa9476de1
Author: Steve Lawrence <[email protected]>
AuthorDate: Mon Apr 6 15:02:13 2020 -0400
Disable Coursier for library management
SBT 1.3.x switched to Coursier for library management. But a bug in
Coursier used by SBT causes retrieveManage to stop working:
https://github.com/sbt/sbt/issues/5078
This feature is needed for SonarQube. So disable Coursier, and use the
old Ivy for library management.
DAFFODIL-2314
---
build.sbt | 1 +
1 file changed, 1 insertion(+)
diff --git a/build.sbt b/build.sbt
index 4dc33f7..494af33 100644
--- a/build.sbt
+++ b/build.sbt
@@ -124,6 +124,7 @@ lazy val commonSettings = Seq(
logBuffered := true,
transitiveClassifiers := Seq("sources", "javadoc"),
retrieveManaged := true,
+ useCoursier := false, // disabled because it breaks retrieveManaged (sbt
issue #5078)
exportJars := true,
exportJars in Test := false,
publishMavenStyle := true,