Skip to content
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
6 changes: 2 additions & 4 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,9 @@ pullRequests.grouping = [ { name = "minor_patch", title = "CORE-69: Minor and pa
# Defaults to empty `[]` which mean Scala Steward will not ignore dependencies.
# updates.ignore = [ { groupId = "org.acme", artifactId="foo", version = "1.0" } ]

# Elasticsearch and its Lucene dependency should not be automatically updated;
# these require nontrivial changes to calling code and business logic. See AJ-266.
updates.ignore = [
{ groupId = "org.elasticsearch.client", artifactId = "transport" }, # AJ-266
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just checking - this is safe to remove because we don't use elastic search anymore, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct, that is gone as of #1623

{ groupId = "org.apache.lucene", artifactId = "lucene-queryparser" } # AJ-266
# Akka updates may use a different license (BSL); don't automatically upgrade.
{ groupId = "com.typesafe.akka" }
]

# If set, Scala Steward will only create or update `n` PRs each time it runs (see `pullRequests.frequency` above).
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sbt._

object Dependencies {
val akkaV = "2.9.3"
val akkaHttpV = "10.6.3"
val akkaV = "2.6.21"
val akkaHttpV = "10.2.10"
val jacksonV = "2.20.0"
val jacksonAnnotationsV = "2.20"
val workbenchLibsHash = "56f2c74" // see https://github.com/broadinstitute/workbench-libs readme for hash values
Expand Down
3 changes: 1 addition & 2 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ object Settings {
val commonResolvers = List(
"artifactory-releases" at artifactory + "libs-release",
"artifactory-snapshots" at artifactory + "libs-snapshot",
"jitpack.io" at "https://jitpack.io",
"Akka library repository" at "https://repo.akka.io/maven"
"jitpack.io" at "https://jitpack.io"
)

val proxyResolvers = List(
Expand Down
Loading