Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ scriptedLaunchOpts ++= {
testFrameworks += new TestFramework("wvlet.airspec.Framework")

libraryDependencies ++= Seq(
"org.wvlet.airframe" %% "airspec" % "2025.1.22" % Test,
"org.wvlet.airframe" %% "airspec" % "2025.1.26" % Test,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better maintainability, it's a good practice to extract dependency versions into val definitions. This centralizes version management, making updates easier and the build file cleaner. For example, you could define val airspecVersion = "2025.1.26" at the top of the file and reference it here. This is a suggestion for future improvement and does not need to block this automated PR.

"org.apache.commons" % "commons-compress" % "1.27.1",
"org.tukaani" % "xz" % "1.11"
)
Expand Down
Loading