sbt plugin settings

Hi,

with gatling-sbt and new to SBT how can I change the script location as described in the README?
I tried the following on the project but it didn’t work

.settings(scalaSource := new File(“src/test/gatling”))

Thanks
Alex

Hi,

As the settings are scoped in a SBT configuration specific to Gatling, you have to scope your setting accordingly : .settings(scalaSource in Gatling := new File(“src/test/gatling”)).

Cheers,

Pierre

thanks Pierre that worked