Repository: knox Updated Branches: refs/heads/master 403624ad4 -> adee21356
KNOX-1329 - Upgrade the transitive springframework spring core from pac4j Project: http://git-wip-us.apache.org/repos/asf/knox/repo Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/adee2135 Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/adee2135 Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/adee2135 Branch: refs/heads/master Commit: adee2135698c74877446abfd83da8c848e4ff35e Parents: 403624a Author: Larry McCay <[email protected]> Authored: Tue May 22 12:38:22 2018 -0400 Committer: Larry McCay <[email protected]> Committed: Tue May 22 12:38:22 2018 -0400 ---------------------------------------------------------------------- gateway-provider-security-pac4j/pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/knox/blob/adee2135/gateway-provider-security-pac4j/pom.xml ---------------------------------------------------------------------- diff --git a/gateway-provider-security-pac4j/pom.xml b/gateway-provider-security-pac4j/pom.xml index 05f482f..480fc15 100644 --- a/gateway-provider-security-pac4j/pom.xml +++ b/gateway-provider-security-pac4j/pom.xml @@ -85,8 +85,19 @@ <groupId>xalan</groupId> <artifactId>xalan</artifactId> </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> </exclusions> </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>4.3.13.RELEASE</version> + </dependency> + <dependency> <groupId>org.pac4j</groupId> <artifactId>pac4j-cas</artifactId> @@ -102,6 +113,12 @@ <groupId>org.pac4j</groupId> <artifactId>pac4j-core</artifactId> <version>${pac4j.version}</version> + <exclusions> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
