I am using appassembler from mojo. What I need to do is I have to add a perticular path of the project (say %BASEDIR%\resources
) to class path, currently it is adding only %REPO%
to the classpath. What changes should I do in my pom.xml. I have already provided below code.
<configurationDirectory>/some/path</configurationDirectory>
<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
And the output batch file contains
set CLASSPATH=%BASEDIR%\\..\SOME\PATH;%REPO%\abc.jar
What I my final outcome should be...
set CLASSPATH=%BASEDIR%\\..\SOME\PATH;%REPO%\abc.jar;%BASEDIR%\resources
What changes should incorporate in my pom.xml for achieving above outcome?