Hi Stephen,
If you are doing that you'd be better omitting the version entirely as it
will be inherited from the parent...
Yeah i changed that and it worked...great...
<project>
<parent>
<groupId>foo</groupId>
<artifactId>bar</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>manchu</artifactId>
</project>
is exactly equivalent to
<project>
<parent>
<groupId>foo</groupId>
<artifactId>bar</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>${project.parent.groupId}</groupId>
I use different groups...
<artifactId>manchu</artifactId>
<version>${project.parent.version}</version>
I just removed the <version> entries....
That's what the problem solved...
Many thanks...
Kind regards
Karl Heinz Marbaise
--
SoftwareEntwicklung Beratung Schulung Tel.: +49 (0) 2405 / 415 893
Dipl.Ing.(FH) Karl Heinz Marbaise ICQ#: 135949029
Hauptstrasse 177 USt.IdNr: DE191347579
52146 Würselen http://www.soebes.de
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]