Oh, I'm sorry. I didn't read your original report closely enough.
People can acquire Roo in two ways, and the acquisition strategy determines where the annotation JAR comes from:
* Downloading an official release. The ZIP releases we put up on our web site don't install the annotation library. When Roo is used to create a project, the resulting pom.xml refers to the annotation library. The Maven installation then downloads the annotation JAR from our Enterprise Bundle Repository (EBR). When we release, we put the ZIP file online and also the corresponding annotation JAR straight into EBR.
* Building from source. In this case the user is probably playing around with an as-yet-unreleased version. They will need to build the annotation JAR themselves. This is very easy, though. Just:
Code:
cd annotations; mvn install
Please note if you install the annotations JAR yourself from source, make sure you delete the annotation JAR from your Maven repository once the official release is out. That's because we don't bother with the -SNAPSHOT suffix like most Maven-based projects (it drives me crazy having to change those in every POM endlessly). What I usually do on my computers just before I make an official release is rm -rf ~/.m2/repository/org/springframework/roo as I am happy for it to download the correct official releases again (far less time consuming and reliable than messing with -SNAPSHOT version numbers).
HTH