olabusayoT commented on code in PR #147: URL: https://github.com/apache/daffodil-sbt/pull/147#discussion_r2666088215
########## README.md: ########## @@ -228,6 +228,36 @@ IntelliJ, do not trigger during builds. So you must either run `sbt Test/compile to manually trigger the resource generator, or let SBT handle builds by enabling the "Use SBT shell for builds" option. +### Saved Parsers as Dependencies + +It can sometimes be useful to add a saved parser as a dependency, causing SBT +to download a saved parser published to a repository. This plugin enriches +`ModuleID` with the `daffodilBin(...)` function to simplify this. The function +requires a version to specify Daffodil compatibility of the saved parser--it +should usually be `daffodilVersion.value`. For example: + +```scala +libraryDependecies ++= Seq( Review Comment: typo Dependencies ########## README.md: ########## @@ -228,6 +228,36 @@ IntelliJ, do not trigger during builds. So you must either run `sbt Test/compile to manually trigger the resource generator, or let SBT handle builds by enabling the "Use SBT shell for builds" option. +### Saved Parsers as Dependencies + +It can sometimes be useful to add a saved parser as a dependency, causing SBT +to download a saved parser published to a repository. This plugin enriches +`ModuleID` with the `daffodilBin(...)` function to simplify this. The function +requires a version to specify Daffodil compatibility of the saved parser--it +should usually be `daffodilVersion.value`. For example: + +```scala +libraryDependecies ++= Seq( + "org.example" % "dfdl-fmt" % "1.0.0" daffodilBin(daffodilVersion.value) +) +``` + +This example adds a dependency to a saved parser for dfdm-fmt compatible with Review Comment: typo dfdl -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
