Skip to content

Commit

Permalink
Nit: fix IntelliJ import warning for nessie-perftest-simulations
Browse files Browse the repository at this point in the history
IJ complains about Scala-library not present (it's there for the
'gatling' source set).
  • Loading branch information
snazy committed Mar 29, 2023
1 parent 7f036d4 commit 1007509
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions perftest/simulations/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ plugins {
extra["maven.name"] = "Nessie - Perf Test - Simulations"

dependencies {
if (System.getProperty("idea.sync.active").toBoolean()) {
// IJ complains about Scala-library not present (it's there for the 'gatling' source set).
compileOnly("org.scala-lang:scala-library:${scalaDependencyVersion("2.13")}")
}
gatling(project(":nessie-model"))
gatling(project(":nessie-client"))
gatling(project(":nessie-perftest-gatling"))
Expand Down

0 comments on commit 1007509

Please sign in to comment.