I am using the Glassfish library like this in my webapp to be in sync with Glassfish embedded libs directory during development. How can I update it to be able to use javax.validation.api 1.1.0? This is the glassfish dependency:
<dependency>
<groupId>org.glassfish.main.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<version>4.0-b72</version>
<scope>provided</scope>
</dependency>
Unfortunately this glassfish lib collection is still using an older javax.validation-api lib. But to use:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.1.0.Final</version>
</dependency>
I need a newer one. Is there any way to update the Glassfish libs if there isn't a new version for glassfish-embedded-all. How do you solve such issues?
Thanks in advance.