This is an automated email from the ASF dual-hosted git repository. hepin pushed a commit to branch sbtDeprecate in repository https://gitbox.apache.org/repos/asf/pekko.git
commit e52fcfa6be9aed559b79e53c0bcd883ba0f4ff2c Author: He-Pin <[email protected]> AuthorDate: Sat Aug 23 01:53:04 2025 +0800 chore: Fix some sbt deprecations --- project/PekkoDevelocityPlugin.scala | 4 ++-- project/ValidatePullRequest.scala | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/project/PekkoDevelocityPlugin.scala b/project/PekkoDevelocityPlugin.scala index 5ecd46fd4a..01a0602847 100644 --- a/project/PekkoDevelocityPlugin.scala +++ b/project/PekkoDevelocityPlugin.scala @@ -60,8 +60,8 @@ object PekkoDevelocityPlugin extends AutoPlugin { .withEnabled(false))) if (isInsideCI) { apacheDevelocityConfiguration - .withTestRetryConfiguration( - original.testRetryConfiguration + .withTestRetry( + original.testRetry .withMaxRetries(1) .withFlakyTestPolicy(FlakyTestPolicy.Fail) // preserve the original build outcome in case of flaky tests ) diff --git a/project/ValidatePullRequest.scala b/project/ValidatePullRequest.scala index ffbc4bdc58..3932172949 100644 --- a/project/ValidatePullRequest.scala +++ b/project/ValidatePullRequest.scala @@ -11,8 +11,8 @@ * Copyright (C) 2009-2022 Lightbend Inc. <https://www.lightbend.com> */ -import com.hpe.sbt.ValidatePullRequest -import com.hpe.sbt.ValidatePullRequest.PathGlobFilter +import com.github.sbt.pullrequestvalidator.ValidatePullRequest +import com.github.sbt.pullrequestvalidator.ValidatePullRequest.PathGlobFilter import com.lightbend.paradox.sbt.ParadoxPlugin import com.lightbend.paradox.sbt.ParadoxPlugin.autoImport.paradox import com.typesafe.tools.mima.plugin.MimaKeys.mimaReportBinaryIssues --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
