-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
feat!: Fatal warnings
Fix all warnings and enable fatal warnings. Also remove the dependency on scala-compat. This is mostly backwards compatible, but won't work with versions of scala before 2.13. It also adds an implicit conversion from SqlRow => A to RowParser[A], which allows continuing to pass in a function as the argument instead of an implicit RowParser, but might be subtly different in some cases.
Showing
20 changed files
with
180 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,8 @@ inScope(Global)(Seq( | |
licenses += "Apache License 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"), | ||
scalacOptions ++= Seq( | ||
"-deprecation", | ||
"-feature" | ||
"-feature", | ||
"-Werror" | ||
), | ||
scmInfo := Some(ScmInfo(url("https://github.com/lucidsoftware/relate"), "scm:git:[email protected]:lucidsoftware/relate.git")), | ||
Benchmark / test / tags += benchmarkTag -> 1, | ||
|
@@ -49,5 +50,5 @@ inScope(Global)(Seq( | |
version := sys.props.getOrElse("build.version", "0-SNAPSHOT") | ||
)) | ||
|
||
skip in publish := true | ||
publish / skip := true | ||
publishTo := sonatypePublishToBundle.value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.