Hi,
I am facing an issue with exec plugin involving <classpath> . the classpath
gets properly generated but gets appended to the command at an incorrect
location
In my case, the use of exec plugin looks like this
<configuration>
<executable>java</executable>
<classpathScope>test</classpathScope>
<arguments>
<argument>-classpath</argument>
<classpath>
<dependency>RulesEngine:RulesEngine</dependency>
</classpath>
<argument>com.cxps.rulesengine.utils.RulesPkgBuilder</argument>
</arguments>
</configuration>
This is generating a command "java -classpath
com.cxps.rulesengine.utils.RulesPkgBuilder class_path_location_string"
Here, class_path_location_string gets appended at the end rather than next
to -classpath.
Please let me know if you are aware of this issue and also any
workaround/solution.
Thanks in advance,
Ram