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 c1a6c1bf6227dc64a1da8b6600574c647f8c30cd Author: Martin Stockhammer <[email protected]> AuthorDate: Thu Jan 9 19:45:52 2020 +0100 Cleanup dependencies of redback-system --- redback-system/pom.xml | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/redback-system/pom.xml b/redback-system/pom.xml index 71ced08..ebec6b5 100644 --- a/redback-system/pom.xml +++ b/redback-system/pom.xml @@ -38,10 +38,6 @@ <dependencies> <dependency> <groupId>org.apache.archiva.redback</groupId> - <artifactId>redback-configuration</artifactId> - </dependency> - <dependency> - <groupId>org.apache.archiva.redback</groupId> <artifactId>redback-authentication-api</artifactId> </dependency> <dependency> @@ -54,25 +50,43 @@ </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> - <artifactId>redback-users-cached</artifactId> + <artifactId>redback-keys-api</artifactId> </dependency> <dependency> <groupId>org.apache.archiva.redback</groupId> - <artifactId>redback-keys-api</artifactId> + <artifactId>redback-policy</artifactId> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </dependency> + <dependency> + <groupId>javax.inject</groupId> + <artifactId>javax.inject</artifactId> + </dependency> + + <dependency> <groupId>org.apache.archiva.redback</groupId> - <artifactId>redback-keys-cached</artifactId> + <artifactId>redback-configuration</artifactId> + <scope>runtime</scope> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context-support</artifactId> + <groupId>org.apache.archiva.redback</groupId> + <artifactId>redback-users-cached</artifactId> + <scope>runtime</scope> </dependency> <dependency> - <groupId>javax.annotation</groupId> - <artifactId>javax.annotation-api</artifactId> + <groupId>org.apache.archiva.redback</groupId> + <artifactId>redback-keys-cached</artifactId> + <scope>runtime</scope> </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context-support</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.archiva.components.registry</groupId> <artifactId>archiva-components-spring-registry-commons</artifactId>
