Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-13 Thread Thomas Broyer
Nobody maintains the JSR303 emulation. Someone (Danilo) once volunteered, started working on the upgrade, and then disappeared. If you don't use client-side validation then you can compile with javax.validation 1.0 and run with 1.1. The problem then is setting up those rules in your build, and

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Ali Akhtar
Please consider making that hibernate upgrade a priority. We are hugely behind on that upgrade, Hibernate 4 was ages ago. Today I'm experiencing this problem, but a lot of people are going to experience this in future, because every project is going to be on a newer version of validation-api. If

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Jens
> GWT is on 1.0.0.1.GA. Isn't that going to be mostly compatible with > 1.1.0? It seems like this would just require changing the version in a > pom, and the rest would work. I would be really surprised if there are any > breaking changes between these versions. > Upgrading Validation API

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Ali Akhtar
It would make my workflow very complicated to have them in separate modules, as then I'd also need a 3rd project for shared code. It so happens that mostly DTOs would be in the shared code, and the DTOs would need to be annotated w/ Validation annotations. Where do they get these annotations,

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Thomas Broyer
On Tuesday, April 12, 2016 at 11:21:39 AM UTC+2, Ali Akhtar wrote: > > gwt-user has a dependency to an older version of > javax-validation:validation-api. This is causing a lot of issues, and > causing builds to break with Dropwizard. See: >

Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Ali Akhtar
gwt-user has a dependency to an older version of javax-validation:validation-api. This is causing a lot of issues, and causing builds to break with Dropwizard. See: http://stackoverflow.com/questions/36568756/maven-dependency-management-being-ignored-at-test-time-works-at-runtime Please