Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] tycho-versions set-version always skips child projects

set-version is a change version refactoring. By default it starts with
the current project, changes its version, then recursively finds and
updates all references to the changed project. If the initial project is
not referenced by anything, then nothing else is updated.

In your case, if project used as <parent> of the modules is part of the
same source tree, you need to specify it using -Dartifacts=artifactId of
the parent project. If the <parent> project is not part of the same
source tree, then I don't believe tycho-version plugin will be useful
for you.

And like Nick explained, don't worry about SKIPPED module status in
Maven build log. Even though technically Maven does not build any of the
submodules, set-version plugin goal still evaluates all of them and
makes all necessary changes.

--
Regards,
Igor

On 12/5/2013, 17:43, Cohen, Tamar (ARC-TI)[Stinger Ghaffarian Technologies Inc. (SGT Inc.)] wrote:
Hi all,

Per the documentation,
https://eclipse.org/tycho/sitedocs/tycho-release/tycho-versions-plugin/set-version-mojo.html
I think I should be able to call tycho-versions on a parent project to
set versions on child projects, as it's described to execute as an
aggregator plugin.

I'm calling like so:
mvn -Dtycho.mode=maven
org.eclipse.tycho:tycho-versions-plugin:set-version
-DnewVersion=1.0.0.20131205222700

This works on a single project but the other child projects are marked
as SKIPPED.

Note that my parent project includes the child projects via the
<modules> block; the child projects have a totally different project set
as parent.
I have experimented with setting my parent project as the parent in the
child project and the child projects are still skipped.

I'm using tycho version 0.19 as for some reason I could not resolve
version 0.20 even when trying to include the correct plugin repository.

Any suggestions?

thanks
Tamar


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user



Back to the top