2

I have a small Gatling project which I would like to package through sbt and then run on different Linux/Windows machines with different JVM parameters. I tried already the sbt package command but that didn't work out. Anyone has done something similar before?

user134
  • 391
  • 2
  • 5
  • 15

1 Answers1

0

Package doesn't include the dependencies of your project.

You need something like sbt-assembly, sbt-pack or sbt-native-packager. Then you can start your tests from within a main method (depending on the type of your package, e.g. java -jar fat-jar-name.jar).

Christian
  • 4,543
  • 1
  • 22
  • 31