Skip to main content

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

Dependency resolution has to happen before build lifecycle starts, so it
is not possible to run any maven goals before it.

--
Regards,
Igor

On 11-07-15 5:22 PM, motes motes wrote:
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.
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top