Maybe you need to have a look to your repository or even the maven settings.xml (in HOME/.m2/)
But it could be easier: org.springframework.roo:org.springframework.roo.annotations:jar:3.0.5.REALEASE, I presume you have an error in you pom, because the dependency is defined with this value:
Code:
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.annotations</artifactId>
<version>${roo.version}</version>
<scope>provided</scope>
</dependency>
Being:
Code:
<roo.version>1.2.0.RELEASE</roo.version>
So the actual version of roo annotations is 1.2.0 (or 1.1.5 if you're using the previous version)