Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[rest-dev] Branch / Version inconsistencies

We seem to have some inconsistencies between the actual content of our git repo branches and our wiki.

For everone to be on the same side, we should ASAP clarify and resolve this issue.

The WIKI says that branch "4.0.0" is work towards 4.0.1, "master" is towards 4.1.0 and "release-5.0" is towards 5.0.0, which all sounds correct and logical.

The git branch "4.0.0" contains this POM.xml which proofs that this is actually work towards 4.0.1:

    <groupId>jakarta.ws.rs</groupId>
    <artifactId>all</artifactId>
    <version>4.0.1-SNAPSHOT</version>

The git branch "master" says in POM.xml that it is the exact version 3.1.0:

    <groupId>jakarta.ws.rs</groupId>
    <artifactId>all</artifactId>
    <version>3.1.0</version>

But even more weird, the git branch "release-5.0" contains a POM towards 3.2.0:

    <groupId>jakarta.ws.rs</groupId>
    <artifactId>all</artifactId>
    <version>3.2.0-SNAPSHOT</version>

This is really weird! So what is the actual status of these branches and how do we clean up this mess?

Regards

-Markus


Back to the top