Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] version numbering strategy

Hi Lorenzo,

It is general maven issue: child pom inherits version and group id
from parent pom so you can skip it but still you need include group
and version in reference to parent from child (parent section).

<parent>
  <artifactId>mandatory</artifactId>
  <groupId>mandatory</groupd>
  <version>mandatory</version>
</parent>
 <artifactId>child</artifactId>

2012/3/30 Lorenzo Bettini <lorenzo.bettini@xxxxxxxxx>:
> Hi
>
> I've been using Tycho only for a few days, so my question might be odd, but
> I was wondering whether it makes sense to specify the <version> only in the
> parent pom and not in the other poms (by the way, from eclipse you get a
> warning when you do that)... or is it better to specify the <version> in all
> poms?
>
> thanks in advance
>        Lorenzo
>
> --
> Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
> HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
> BLOGS: http://tronprog.blogspot.com  http://longlivemusic.blogspot.com
>
>
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top