-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #943 from sbt/wip/nightly
Use Bintray for nightly
- Loading branch information
Showing
3 changed files
with
6 additions
and
10 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 |
---|---|---|
|
@@ -58,7 +58,7 @@ ThisBuild / organization := "org.scala-sbt" | |
ThisBuild / licenses := List(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))) | ||
ThisBuild / scalafmtOnCompile := !(Global / insideCI).value | ||
ThisBuild / Test / scalafmtOnCompile := !(Global / insideCI).value | ||
ThisBuild / bintrayPackage := "zinc" | ||
ThisBuild / bintrayPackage := sys.env.get("BINTRAY_PACKAGE").getOrElse("zinc") | ||
ThisBuild / scmInfo := Some( | ||
ScmInfo(url("https://github.com/sbt/zinc"), "[email protected]:sbt/zinc.git") | ||
) | ||
|
@@ -77,13 +77,6 @@ ThisBuild / developers := List( | |
Developer("jvican", "Jorge Vicente Cantero", "@jvican", url("https://github.com/jvican")), | ||
Developer("Duhemm", "Martin Duhem", "@Duhemm", url("https://github.com/Duhemm")), | ||
) | ||
ThisBuild / publishTo := { | ||
val old = (ThisBuild / publishTo).value | ||
sys.props.get("sbt.build.localmaven") match { | ||
case Some(path) => Some(MavenCache("local-maven", file(path))) | ||
case _ => old | ||
} | ||
} | ||
ThisBuild / pomIncludeRepository := (_ => false) // drop repos other than Maven Central from POM | ||
ThisBuild / mimaPreviousArtifacts := Set.empty | ||
// limit the number of concurrent test so testQuick works | ||
|
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