Fix dependencies to beanutils and ognl. This closes #10. Idp has a dependency to : * both commons-beanutils-core:1.8.3 and commons-beanutils:1.9.2. * opensymphony:ognl and ognl:ognl
Excluded dependency to the oldest version of libraries. Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/af925166 Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/af925166 Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/af925166 Branch: refs/heads/1.3.x-fixes Commit: af925166aab61faf29d3753d96ac1ad45116466a Parents: 236744f Author: Adrian Gonzalez <[email protected]> Authored: Sun Sep 18 22:24:21 2016 +0200 Committer: Colm O hEigeartaigh <[email protected]> Committed: Tue Nov 8 14:43:29 2016 +0000 ---------------------------------------------------------------------- services/idp/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/af925166/services/idp/pom.xml ---------------------------------------------------------------------- diff --git a/services/idp/pom.xml b/services/idp/pom.xml index b7e918f..e3ce225 100644 --- a/services/idp/pom.xml +++ b/services/idp/pom.xml @@ -100,6 +100,12 @@ <groupId>org.springframework.webflow</groupId> <artifactId>spring-webflow</artifactId> <version>2.3.4.RELEASE</version> + <exclusions> + <exclusion> + <groupId>opensymphony</groupId> + <artifactId>ognl</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.security</groupId> @@ -256,6 +262,14 @@ <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </exclusion> + <!-- + dependency to newer version (commons-beanutils) + imported from commons-validator + --> + <exclusion> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils-core</artifactId> + </exclusion> </exclusions> </dependency> <dependency>
