created feature request 4330, please vote :o)
however i found a work around, not very optimal but it works. - if anybody
knows an alternative im still very interested.
<plugin>
<groupId>dk.fujitsu.mavenplugins</groupId>
<artifactId>svn</artifactId>
<version>1.9-SNAPSHOT</version>
<executions>
<execution>
<configuration>
<skip>${maven.deploy.skip}</skip>
</configuration>
<phase>validate</phase>
<goals>
<goal>uptodate-check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>${maven.deploy.skip}</skip>
</configuration>
</plugin>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
now it is only possible to do a deploy by
mvn deploy -Dmaven.deploy.skip=false
which also triggers my plugin in the validation phase
/Claus
--
View this message in context:
http://www.nabble.com/Maven2-plugin-execution-sequence-tp25172369p25204335.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]