This is an automated email from the ASF dual-hosted git repository.

slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 0bc3b0e  Update to latest sbt-daffodil recommended style
0bc3b0e is described below

commit 0bc3b0ea6432a33b6ed2830af19f07b3b5ee8967
Author: Steve Lawrence <[email protected]>
AuthorDate: Thu Mar 26 13:36:54 2026 -0400

    Update to latest sbt-daffodil recommended style
---
 site/dfdl-layout.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/site/dfdl-layout.md b/site/dfdl-layout.md
index e60a33d..726c35c 100644
--- a/site/dfdl-layout.md
+++ b/site/dfdl-layout.md
@@ -128,13 +128,13 @@ or commands to run via SBT, see the [GitHub 
README](https://github.com/apache/da
 Use the below template for the build.sbt file:
 
 ``` scala
-name := "dfdl-rfmt"
- 
-organization := "com.example"
- 
-version := "0.0.1"
- 
-enablePlugins(DaffodilPlugin)
+val root = (project in file("."))
+  .settings(
+    name := "dfdl-rfmt",
+    organization := "com.example",
+    version := "0.0.1",
+  )
+  .daffodilProject()
 ```
 
 

Reply via email to