Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build dependencies to support JDK 17 #1144

Merged
merged 2 commits into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '8'
java-version: '11'
- name: Coursier cache
uses: coursier/cache-action@v6
- name: Cache sbt
Expand Down
9 changes: 4 additions & 5 deletions project/Docs.scala
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import sbt._
import Keys._
import com.typesafe.sbt.git.GitRunner
import com.typesafe.sbt.sbtghpages.GhpagesPlugin
import com.typesafe.sbt.sbtghpages.GhpagesPlugin.autoImport._
import com.typesafe.sbt.{ SbtGit, SbtSite, site => sbtsite }
import com.typesafe.sbt.site.paradox.ParadoxSitePlugin.autoImport._
import com.github.sbt.git.GitRunner
import com.github.sbt.sbtghpages.GhpagesPlugin
import com.github.sbt.sbtghpages.GhpagesPlugin.autoImport._
import com.github.sbt.git.SbtGit
import scala.sys.process.Process
import SbtGit.{ git, GitKeys }
import SiteMap.{ Entry, LastModified }
Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2")
libraryDependencies += "org.foundweekends" %% "pamflet-library" % "0.8.2"
addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.5.0")
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.7.0")
libraryDependencies += "org.foundweekends" %% "pamflet-library" % "0.11.0"
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.6.6")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.6.9")
Loading