Skip to content

Commit

Permalink
Accept warning in files connector
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru committed Mar 27, 2024
1 parent 275fb0c commit 53ec54b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,15 @@ lazy val elasticsearch = alpakkaProject(
)

// The name 'file' is taken by `sbt.file`, hence 'files'
lazy val files = alpakkaProject("file", "file", Dependencies.File, Scala3.settings)
lazy val files = alpakkaProject(
"file",
"file",
Dependencies.File,
Scala3.settings,
// com.sun.nio.file.SensitivityWatchEventModifier is deprecated in Java 21
// https://bugs.openjdk.org/browse/JDK-8303175
fatalWarnings := false
)

lazy val ftp = alpakkaProject(
"ftp",
Expand Down

0 comments on commit 53ec54b

Please sign in to comment.