-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Use hidden project configuration for dependency management
- Loading branch information
Showing
5 changed files
with
16 additions
and
7 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 |
---|---|---|
|
@@ -3,4 +3,3 @@ runner.dialect = scala212 | |
maxColumn = 120 | ||
align.preset = none | ||
rewrite.trailingCommas.style = always | ||
|
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
6 changes: 5 additions & 1 deletion
6
src/sbt-test/artifacts/report-and-inclusion/src/main/scala/Boot.scala
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
import cats.syntax.all._ | ||
|
||
object Boot extends App { | ||
|
||
println("Hello World") | ||
// Depend on Cats to verify that dependencies are maintained | ||
println("Hello " |+| " World") | ||
|
||
val ohno = Option(42).get | ||
|
||
} |
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
> compile | ||
> clean | ||
-> scapegoat | ||
$ exists target/scala-2.13/scapegoat-report/scapegoat.xml | ||
-$ exists target/scala-2.13/classes/Boot.class | ||
> clean | ||
> compile | ||
> makePom | ||
-$ exists target/scala-2.13/scapegoat-report/scapegoat.xml | ||
> check |