-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from deprecated
in
syntax to slash syntax
- Loading branch information
Showing
4 changed files
with
11 additions
and
13 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ object Common { | |
Resolver.sonatypeRepo("releases"), | ||
Resolver.typesafeRepo("releases") | ||
), | ||
testOptions in Test += Tests.Argument("-oDF"), | ||
Test / testOptions += Tests.Argument("-oDF"), | ||
|
||
// test dependencies | ||
libraryDependencies ++= Seq( | ||
|
@@ -63,7 +63,7 @@ object Common { | |
}, | ||
|
||
// stuff related to publishing | ||
publishArtifact in Test := false, | ||
Test / publishArtifact := false, | ||
pomIncludeRepository := { _ => | ||
false | ||
}, | ||
|
@@ -73,7 +73,7 @@ object Common { | |
publishTo := sonatypePublishTo.value, | ||
sonatypeProjectHosting := Some(GitHubHosting("scalanlp", "breeze", "David Hall", "[email protected]")), | ||
|
||
unmanagedSourceDirectories in Compile ++= { | ||
Compile / unmanagedSourceDirectories ++= { | ||
CrossVersion.partialVersion(scalaVersion.value) match { | ||
case Some((2, 11|12)) => Seq( | ||
baseDirectory.value / "src" / "main" / "scala_2.11_2.12", | ||
|
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