jboss-developer / jboss-picketlink-quickstarts

The quickstarts demonstrate PicketLink and a few additional technologies. They provide small, specific, working examples that can be used as a reference for your own project.
96 stars 187 forks source link

SNAPSHOT usage in quickstarts #17

Closed axelhodler closed 10 years ago

axelhodler commented 10 years ago

I was wondering if you would want to revert the picketlink-javaee-6.0 version in the pom.xml back to 2.6.0.Final. Snapshot versions are not offered on maven-central. So if you try to build the projects it will just provide you with errors and each developer has to switch back to 2.6.0.Final manually to get the necessary dependencies.

pedroigor commented 10 years ago

The idea is that you never use master, unless you want to try out the upstream changes.

In order to build and run a particular version, just clone the repository and do a:

git checkout v2.7.0.Beta1

Where v2.7.0.Beta1 is a tag corresponding to one of the released versions. More information here https://github.com/jboss-developer/jboss-picketlink-quickstarts#check-out-the-source

axelhodler commented 10 years ago

Thanks