Skip to content

Commit

Permalink
Merge pull request #270 from danicheg/sbt-typelevel-bump
Browse files Browse the repository at this point in the history
Update `sbt-typelevel` to 0.7.3
  • Loading branch information
danicheg authored Sep 8, 2024
2 parents 0f8de12 + 2fcc92f commit 1492621
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:

dependency-submission:
name: Submit Dependencies
if: github.event_name != 'pull_request'
if: github.event.repository.fork == false && github.event_name != 'pull_request'
strategy:
matrix:
os: [ubuntu-latest]
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
target/
.idea/
.vscode
# vim
*.sw?

Expand Down
2 changes: 1 addition & 1 deletion core/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val sbtTypelevelVersion = "0.7.2"
val sbtTypelevelVersion = "0.7.3"
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % sbtTypelevelVersion)
Expand Down
6 changes: 1 addition & 5 deletions core/src/main/scala/org/http4s/sbt/Http4sOrgPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import scalafix.sbt.ScalafixPlugin.autoImport._
import ExplicitDepsPlugin.autoImport._
import GenerativeKeys._
import TypelevelCiPlugin.autoImport._
import TypelevelSonatypePlugin.autoImport._

object Http4sOrgPlugin extends AutoPlugin {
override def trigger = allRequirements
Expand All @@ -43,10 +42,7 @@ object Http4sOrgPlugin extends AutoPlugin {
.enablePlugins(NoPublishPlugin)
)

lazy val publishSettings: Seq[Setting[_]] =
Seq(
tlSonatypeUseLegacyHost := false
)
lazy val publishSettings: Seq[Setting[_]] = Seq.empty

lazy val organizationSettings: Seq[Setting[_]] =
Seq(
Expand Down

0 comments on commit 1492621

Please sign in to comment.