This issue can't be edited

Because it belongs to an archived project. Jira admins can restore projects from the archive.

Maven pom.xml of annotations 3.3.1.GA depends on hibernate-commons-annotations 3.0.0.ga instead of 3.3.0.ga

Description

I could be wrong, but it looks very strange to me that the latest hibernate annotations 3.3.1.GA doesn't depend on the latest hibernate-commons-annotations 3.3.0.ga.

<project ...>
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<packaging>jar</packaging>
<version>3.3.1.GA</version>
...

<dependencies>
...
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.0.0.ga</version>
</dependency>
...
</dependencies>

</project>

If it is intended, please add a note in the pom.xml:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.0.0.ga</version> <!-- Not 3.3.0.ga because ... -->
</dependency>

The same issue occurs for hibernate-entitymanager.
Also, it's confusing to use "...ga" and "...GA" with a different case-sensitivity in the version number.

Environment

None

Activity

Show:

Emmanuel Bernard May 31, 2008 at 9:14 PM

I've added a readme in repository.jboss.org next to the faulty commons-annotations

Geoffrey De Smet March 18, 2008 at 11:45 AM

HV-29: Looks like hibernate-commons-annotations 3.3.0.ga was a mistake, so please mark this as a trivial issue to put the comment in the pom.xml's of annotations and entitymanager:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.0.0.ga</version> <!-- Note that 3.3.0.ga was a mislabeled 3.0.0.ga release -->
</dependency>

Fixed

Details

Assignee

Reporter

Bug Testcase Reminder (view)

Bug reports should generally be accompanied by a test case!

Bug Testcase Reminder (edit)

Bug reports should generally be accompanied by a test case!

Participants

Emmanuel Bernard
Geoffrey De Smet

Affects versions

Priority

Created March 18, 2008 at 10:32 AM
Updated May 31, 2008 at 9:14 PM
Resolved May 31, 2008 at 9:14 PM