I need to exclude some source files from build with gatling-maven-plugin

Hi, I need to exclude some files from the build on my project (don’t want to delete them yet). I’ve seen that prior to gatling 2.0 we could define the includes and excludes in the pom

<configuration> ... <includes> <include>**/*.scala</include> </includes> <excludes> <exclude>advanced/*.scala</exclude> </excludes> ...

But not anymore, there’s any other way to do it?

Thanks!

Hi,

No, includes are excluded are no longer supported.
If you have Scala source files that don’t compile, you have to remove them. If you want to keep a copy, that’s what VCS are for.
If you want to select one given simulation, just explicitly set it.

Cheers,