-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix travis build for cross compilation.
- Loading branch information
Showing
10 changed files
with
63 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,11 +69,11 @@ def compilerOptionsVersion(scalaVersion: String) = | |
case _ => Nil | ||
}) | ||
|
||
lazy val scalaVersion212: String = "2.12.10" | ||
lazy val scalaVersion213: String = "2.13.1" | ||
lazy val scalaVersion212: String = "2.12.10" | ||
lazy val scalaVersion213: String = "2.13.1" | ||
lazy val supportedScalaVersions = List(scalaVersion212, scalaVersion213) | ||
|
||
ThisBuild / scalaVersion := scalaVersion213 | ||
ThisBuild / scalaVersion := scalaVersion212 | ||
|
||
lazy val commonSettings = Seq( | ||
version := "2.3.12", | ||
|
@@ -458,13 +458,13 @@ lazy val docs = | |
.enablePlugins(ParadoxSitePlugin) | ||
.enablePlugins(GhpagesPlugin) | ||
.settings( | ||
scalaVersion := scalaVersion212, // WIP! | ||
paradoxTheme := Some(builtinParadoxTheme("generic")), | ||
name := "scalapact-docs", | ||
git.remoteRepo := "[email protected]:ITV/scala-pact.git", | ||
sourceDirectory in Paradox := sourceDirectory.value / "main" / "paradox", | ||
skip in publish := true | ||
) | ||
.settings(scala212OnlySettings) | ||
|
||
lazy val scalaPactProject = | ||
(project in file(".")) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
sbt docs/clean docs/paradox docs/makeSite docs/ghpagesPushSite | ||
sbt +docs/clean +docs/paradox +docs/makeSite +docs/ghpagesPushSite |
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