Works locally but not on Jenkins because multi maven projects are pre-built when running itests locally. Until projects are built, they don't have a ".project" file. So test fails on this line: https://github.com/jbosstools/jbosstools-quarkus/blob/main/itests/org.jboss.tools.quarkus.integration.tests/src/org/jboss/tools/quarkus/integration/tests/launch/configuration/AbstractLaunchConfigurationTest.java#L63 .
I see 2 ways:
- instead of using ".project" file for create the project, just simply import the project via File -> Open projects from file system. I'm not sure if its the same, need stephane.bouchet to approve.
- Build maven-dao and maven-rest projects before looking for ".project" file.
stephane.bouchet What do you think?