Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Run task before the target is resolved (target-resolve phase..)?

In a maven3/tycho project I would like to run an ant task before the
target is resolved. But it seems that the target is resolved before
any of the standard maven phases is run. Is there someway to do stuff
before the target is resolved, I have tried:

						<phase>generate-resources</phase>
						<goals>
							<goal>copy</goal>
						</goals>

but still the target is resolved (and the projec fails if the resolve
fails) before this task is executed.


Back to the top