Hi,
We have following code in project.xml when we use maven1:
<dependency>
<groupId>Group</groupId>
<artifactId>applet</artifactId>
<version>1</version>
<properties>
<war.target.path>applets</war.target.path>
</properties>
</dependency>
As you can see, we want to declare the jar outside of WEB-INF (applets
directory).
Now we move to mave2. However, in pom.xml, I don't know how to
translate the <war.target.path>. Could you please let me know how
to resolve this? Appreciate any suggestion.
Thanks in advance.