Hi,
   I would like to use the proguard plugin and be able to run it only at
night using a property.
For example: mvn install -Dskip.proguard=false
And by default it won't do it. That will speed up our build time.
I try this :

<properties>
   <skip.proguard>true</skip.proguard>
</properties>
. . . 
   <plugin>
      <groupId>com.pyx4me</groupId>
      <artifactId>proguard-maven-plugin</artifactId>
. . . 
      <configuration>
         <skip>${skip.proguard}</skip>

But it does not work.
 
How can I solve that problem? Who can I ask to fix it?
How come this option is not manage by the maven framework? I believe it
would simplify things...

Thanks




-- 
View this message in context: 
http://n2.nabble.com/Does-maven-plugin-configuration-skip-option-is-managed-by-the-plugin--tp1619847p1619847.html
Sent from the maven users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to