You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Maxim Gordienko <mg...@gmail.com> on 2008/08/01 22:00:52 UTC

redefine plugin properties

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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org