Skip to content

Commit

Permalink
chore: Update scala-library to 2.13.12 (#2841)
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Kleinbölting <[email protected]>
  • Loading branch information
daschbot and seakayone authored Oct 20, 2023
1 parent b0e112e commit 1b72ac1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object Dependencies {
"daschswiss/apache-jena-fuseki:2.1.2" // should be the same version as in docker-compose.yml, also make sure to use the same version when deploying it (i.e. version in ops-deploy)!
val sipiImage = "daschswiss/sipi:3.8.1" // base image the knora-sipi image is created from

val ScalaVersion = "2.13.11"
val ScalaVersion = "2.13.12"

val PekkoActorVersion = "1.0.1"
val PekkoHttpVersion = "1.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ object GravsearchQueryOptimisationFactory {
): GravsearchQueryOptimisationFeature =
new GravsearchQueryOptimisationFeature(typeInspectionResult, querySchema) {
override def optimiseQueryPatterns(patterns: Seq[QueryPattern]): Seq[QueryPattern] =
new ReorderPatternsByDependencyOptimisationFeature(this.typeInspectionResult, querySchema)
new ReorderPatternsByDependencyOptimisationFeature(this.typeInspectionResult, this.querySchema)
.optimiseQueryPatterns(
new RemoveEntitiesInferredFromPropertyOptimisationFeature(this.typeInspectionResult, querySchema)
new RemoveEntitiesInferredFromPropertyOptimisationFeature(this.typeInspectionResult, this.querySchema)
.optimiseQueryPatterns(
new RemoveRedundantKnoraApiResourceOptimisationFeature(this.typeInspectionResult, querySchema)
new RemoveRedundantKnoraApiResourceOptimisationFeature(this.typeInspectionResult, this.querySchema)
.optimiseQueryPatterns(patterns)
)
)
Expand Down

0 comments on commit 1b72ac1

Please sign in to comment.