Unable to load proceses from custom defined directory

I defined the following in my application.yml file:
process-definition-location-prefix: ${flowable.autoload.classpath}
and in my pom file:
<flowable.autoload.classpath>${project.basedir}/../customers/${customer.name}/processes/</flowable.autoload.classpath>
however I get a FileNotFoundException on boot despite the fact that the path printed in the error is the correct path and is accessible.

Which version of Flowable?

I’m using version 6.4.2

Looking at https://github.com/flowable/flowable-engine/blob/master/modules/flowable-spring-boot/flowable-spring-boot-starters/flowable-spring-boot-autoconfigure/src/main/java/org/flowable/spring/boot/FlowableProperties.java#L93 … that looks ok.

Can you debug this line to see what actually gets passed in: https://github.com/flowable/flowable-engine/blob/master/modules/flowable-spring-boot/flowable-spring-boot-starters/flowable-spring-boot-autoconfigure/src/main/java/org/flowable/spring/boot/ProcessEngineAutoConfiguration.java#L168 ?

I managed to solve this. It was a user on my part in that someone else had changed the maven properties declaration for that variable and put that in an auto loaded profile.
My apologies for the late response.