It sounds to me like you want another module in your project that creates the obfuscated jar as its artifact, then have the war module depend on that obfuscated jar. The war plugin would pick up the obfuscated one and build the war with it.

Nasrin_a wrote:
hi all i have a web application & i build my project by maven,
now i have a new request :obfuscatation of this project ,
for this request i used war plugin
  <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <archiveClasses>true</archiveClasses>
                </configuration>
            </plugin>
then obfuscatated  archive classes ,

now i want to copy this obfuscatated jar file to /WEB-INF/lib in my war
file,
but i dont know how to do this.(i dont want to use other plugin if possible)

would you please help me?

thanks.






---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to