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 1dadf04c787b56b918e6edb61c3e6870d6b34651 Author: Martin Stockhammer <[email protected]> AuthorDate: Tue Dec 24 11:17:26 2019 +0100 Cleanup auth-users dependencies --- .../redback-authentication-users/pom.xml | 27 ++++++++++++++++------ 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-users/pom.xml b/redback-authentication/redback-authentication-providers/redback-authentication-users/pom.xml index 35616f1..52021c1 100644 --- a/redback-authentication/redback-authentication-providers/redback-authentication-users/pom.xml +++ b/redback-authentication/redback-authentication-providers/redback-authentication-users/pom.xml @@ -42,20 +42,17 @@ <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-policy</artifactId> </dependency> + <dependency> <groupId>org.apache.archiva.redback</groupId> - <artifactId>redback-users-configurable</artifactId> + <artifactId>redback-users-api</artifactId> </dependency> <dependency> - <groupId>org.apache.archiva.redback</groupId> - <artifactId>redback-users-cached</artifactId> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context-support</artifactId> - </dependency> - <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </dependency> @@ -69,6 +66,22 @@ </dependency> <dependency> + <groupId>org.apache.archiva.redback</groupId> + <artifactId>redback-users-configurable</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.archiva.redback</groupId> + <artifactId>redback-users-cached</artifactId> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context-support</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <scope>test</scope>
