Repository: cxf-fediz Updated Branches: refs/heads/master 5e1a5295e -> 98fa5a516
[FEDIZ-160] - Replace Hibernate with Apache BVal Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/98fa5a51 Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/98fa5a51 Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/98fa5a51 Branch: refs/heads/master Commit: 98fa5a516bd21545a88535d19e0ac2ee6c51f566 Parents: 5e1a529 Author: Colm O hEigeartaigh <[email protected]> Authored: Tue Mar 29 15:46:16 2016 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Tue Mar 29 15:46:16 2016 +0100 ---------------------------------------------------------------------- pom.xml | 2 +- services/idp/pom.xml | 17 +++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/98fa5a51/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 18972b8..1c79233 100644 --- a/pom.xml +++ b/pom.xml @@ -39,6 +39,7 @@ <properties> <apacheds.version>2.0.0-M21</apacheds.version> <bcprov.version>1.54</bcprov.version> + <bval.version>1.1.1</bval.version> <commons.lang.version>3.4</commons.lang.version> <commons.logging.version>1.2</commons.logging.version> <commons.io.version>2.4</commons.io.version> @@ -48,7 +49,6 @@ <easymock.version>3.4</easymock.version> <ecj.version>4.4.2</ecj.version> <ehcache.version>2.9.0</ehcache.version> - <hibernate.version>5.2.2.Final</hibernate.version> <httpclient.version>4.3.5</httpclient.version> <hsqldb.version>2.3.3</hsqldb.version> <htmlunit.version>2.19</htmlunit.version> http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/98fa5a51/services/idp/pom.xml ---------------------------------------------------------------------- diff --git a/services/idp/pom.xml b/services/idp/pom.xml index 49163c5..2322c2e 100644 --- a/services/idp/pom.xml +++ b/services/idp/pom.xml @@ -238,14 +238,15 @@ <version>1.2</version> </dependency> <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate-validator</artifactId> - <version>${hibernate.version}</version> - </dependency> - <dependency> - <groupId>javax.el</groupId> - <artifactId>el-api</artifactId> - <version>${javax.el.version}</version> + <groupId>org.apache.bval</groupId> + <artifactId>bval-jsr</artifactId> + <version>${bval.version}</version> + <exclusions> + <exclusion> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-impl</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>io.swagger</groupId>
