Hello,
sorry for maybe a stupid question but I really do not know is it possible.
I have a plugin defining some property named abc with value '1'. like this:
<properties>
<abc>1</abc>
</properties>
I call this plugin from my project with something like this:
<build>
<plugins>
<plugin>
<groupId>mygroup</groupId>
<artifactId>myartifact</artifactId>
<executions>
<execution>
<goals>
<goal>mygoal</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Is there any way to change this property from the calling project?
Thank you!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]