You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by "stevedlawrence (via GitHub)" <gi...@apache.org> on 2023/02/09 12:28:01 UTC

[GitHub] [daffodil] stevedlawrence commented on a diff in pull request #954: Use SLF4J for Daffodil logging, with custom backend for CLI/TDML

stevedlawrence commented on code in PR #954:
URL: https://github.com/apache/daffodil/pull/954#discussion_r1101399301


##########
build.sbt:
##########
@@ -36,7 +36,28 @@ lazy val genExamples = taskKey[Seq[File]]("Generate runtime2 example files")
 
 lazy val daffodil         = project.in(file(".")).configs(IntegrationTest)
                               .enablePlugins(JavaUnidocPlugin, ScalaUnidocPlugin)
-                              .aggregate(macroLib, propgen, lib, io, runtime1, runtime1Unparser, runtime1Layers, runtime2, core, japi, sapi, tdmlLib, tdmlProc, cli, udf, schematron, test, testIBM1, tutorials, testStdLayout)
+                              .aggregate(
+                                 macroLib,
+                                 propgen,
+                                 slf4jLogger,
+                                 lib,
+                                 io,
+                                 runtime1,
+                                 runtime1Unparser,
+                                 runtime1Layers,
+                                 runtime2,
+                                 core,
+                                 japi,
+                                 sapi,
+                                 tdmlLib,
+                                 tdmlProc,
+                                 cli,
+                                 udf,
+                                 schematron,
+                                 test,
+                                 testIBM1,
+                                 tutorials,
+                                 testStdLayout)

Review Comment:
   Nope, order doesn't matter in the aggregate() function. Makes sense to sort them.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@daffodil.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org