diff options
author | Martin Stockhammer <martin_s@apache.org> | 2020-06-20 18:02:12 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2020-06-20 18:02:12 +0200 |
commit | 4a92d910af5edcdda5bdf7d4d0161989ed67afca (patch) | |
tree | da1ba5541b08167e7a045952ef763a0f4be357e6 /archiva-modules/plugins | |
parent | cc10ae9f1e8ae56a9118656c8940dc2f6598347c (diff) | |
download | archiva-4a92d910af5edcdda5bdf7d4d0161989ed67afca.tar.gz archiva-4a92d910af5edcdda5bdf7d4d0161989ed67afca.zip |
Dependency cleanup of repository-statistics
Diffstat (limited to 'archiva-modules/plugins')
-rw-r--r-- | archiva-modules/plugins/repository-statistics/pom.xml | 38 |
1 files changed, 17 insertions, 21 deletions
diff --git a/archiva-modules/plugins/repository-statistics/pom.xml b/archiva-modules/plugins/repository-statistics/pom.xml index 8a9a41cec..988573265 100644 --- a/archiva-modules/plugins/repository-statistics/pom.xml +++ b/archiva-modules/plugins/repository-statistics/pom.xml @@ -45,14 +45,28 @@ <artifactId>archiva-maven-metadata</artifactId> </dependency> <dependency> + <groupId>org.apache.archiva</groupId> + <artifactId>metadata-model</artifactId> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> - <groupId>javax.jcr</groupId> - <artifactId>jcr</artifactId> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> </dependency> + <dependency> + <groupId>javax.inject</groupId> + <artifactId>javax.inject</artifactId> + </dependency> + + <!-- Test dependencies --> <dependency> @@ -66,25 +80,7 @@ <version>${project.version}</version> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-jcl</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-all</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.jackrabbit</groupId> - <artifactId>jackrabbit-jcr-commons</artifactId> - </dependency> - <dependency> - <groupId>org.apache.archiva</groupId> - <artifactId>metadata-store-jcr</artifactId> - <scope>test</scope> - </dependency> + </dependencies> </project> |