This is an automated email from the ASF dual-hosted git repository. martin_s pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/archiva-redback-core.git
commit 48f24b2b5d413b79f2fc1fac359f3c9efb562286 Author: Martin Stockhammer <[email protected]> AuthorDate: Tue Dec 24 11:34:50 2019 +0100 Cleanup authentication dependencies and moving version numbers to parent pom --- pom.xml | 12 ++++++------ .../redback-authentication-open/pom.xml | 16 +++++++++++++--- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index 2780568..26d3d96 100644 --- a/pom.xml +++ b/pom.xml @@ -339,7 +339,7 @@ <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> - <version>1.2</version> + <version>${commons.logging.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.components.cache</groupId> @@ -354,7 +354,7 @@ <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> - <version>2.10.6</version> + <version>${ehcache.version}</version> </dependency> <dependency> <groupId>org.apache.archiva.components</groupId> @@ -385,18 +385,18 @@ <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> - <version>1.8.1</version> + <version>${commons.digester.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.4</version> + <version>${commons.io.version}</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <!-- commons-configuration requires this version. --> - <version>3.2</version> + <version>${commons.collections.3.version}</version> </dependency> <dependency> <groupId>commons-codec</groupId> @@ -436,7 +436,7 @@ <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> - <version>2.3.2</version> + <version>${hsqldb.version}</version> <scope>test</scope> </dependency> <!-- spring --> diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-open/pom.xml b/redback-authentication/redback-authentication-providers/redback-authentication-open/pom.xml index 0b84ce0..babb0f3 100644 --- a/redback-authentication/redback-authentication-providers/redback-authentication-open/pom.xml +++ b/redback-authentication/redback-authentication-providers/redback-authentication-open/pom.xml @@ -39,13 +39,23 @@ <artifactId>redback-authentication-api</artifactId> </dependency> <dependency> + <groupId>org.apache.archiva.redback</groupId> + <artifactId>redback-policy</artifactId> + </dependency> + <dependency> <groupId>org.springframework</groupId> - <artifactId>spring-context-support</artifactId> - </dependency> + <artifactId>spring-context</artifactId> + </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> - </dependency> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context-support</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project>
