I need to specify reportDirectory so that it's in a different local drive compared to where the project is located. Another words, my project is somewhere in C:/ and I need to generate some artifacts after build in shared folder or another local drive which is mapping that shared folder
<configuration>
<reportDirectory>G:/someFolder</reportDirectory>
</configuration>
or
<configuration>
<reportDirectory>\\PCNAME1234/someFolder</reportDirectory>
</configuration>
When I try those variants I get
java.lang.IllegalArgumentException: 'other' has different root
and
IllegalArgumentException: 'other' is different type of Path
accordingly. The build fails even though report is generated.
Is there a possible way to implement this without build failure?