Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds argLine to instrument Integration Tests
* Fix #7536 by adding the ability to specify an argLine property when running tests. For Example, in a project I'm building: ``` <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${surefire-plugin.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <systemPropertyVariables> <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> <maven.home>${maven.home}</maven.home> <quarkus.test.native-image-profile>it</quarkus.test.native-image-profile> <argLine>${argLine}</argLine> </systemPropertyVariables> </configuration> </execution> </executions> </plugin> ```
- Loading branch information