I was setting up a simple project to play with roo and gwt.

The commands I run were:
Code:
jpa setup --database HYPERSONIC_IN_MEMORY --provider HIBERNATE 
entity jpa --class ~.server.domain.Animal --testAutomatically 
field string --fieldName name --notNull

Running
Code:
web gwt setup
removes any direct dependency to javax.validation-api. More precisely, it changes its classifier to 'sources'. As a result, entities with validation no longer compile, as well as some scaffolded test files.

After running
Code:
web gwt all --proxyPackage ~.client.proxy --requestPackage ~.client.request
, some of the scaffolded files (namely ~.client.scaffold.place.AbstractProxyEditActivity) also does not compile.

Am I doing something wrong?