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.git
commit 1bcd7762ac8b0b3f719524e29f4a11e36c624992 Author: Martin Stockhammer <[email protected]> AuthorDate: Sat Jun 20 09:29:04 2020 +0200 Finish dependency cleanup for maven-repository --- archiva-modules/archiva-maven/archiva-maven-indexer/pom.xml | 3 +++ archiva-modules/archiva-maven/archiva-maven-repository/pom.xml | 2 ++ status-dep.txt | 1 + 3 files changed, 6 insertions(+) diff --git a/archiva-modules/archiva-maven/archiva-maven-indexer/pom.xml b/archiva-modules/archiva-maven/archiva-maven-indexer/pom.xml index 29d22e6..28ded4e 100644 --- a/archiva-modules/archiva-maven/archiva-maven-indexer/pom.xml +++ b/archiva-modules/archiva-maven/archiva-maven-indexer/pom.xml @@ -130,12 +130,15 @@ </exclusions> </dependency> + <!-- Runtime scope, because it's needed by maven classes --> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> + <scope>runtime</scope> </dependency> + <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> diff --git a/archiva-modules/archiva-maven/archiva-maven-repository/pom.xml b/archiva-modules/archiva-maven/archiva-maven-repository/pom.xml index 6e2ec91..5c663dd 100644 --- a/archiva-modules/archiva-maven/archiva-maven-repository/pom.xml +++ b/archiva-modules/archiva-maven/archiva-maven-repository/pom.xml @@ -177,9 +177,11 @@ </exclusion> </exclusions> </dependency> + <!-- Runtime scope, because it's needed by maven classes --> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> + <scope>runtime</scope> </dependency> <dependency> diff --git a/status-dep.txt b/status-dep.txt index 2e663c5..8dfbe27 100644 --- a/status-dep.txt +++ b/status-dep.txt @@ -45,6 +45,7 @@ archiva-modules archiva-maven-model archiva-maven-proxy archiva-maven-indexer + archiva-maven-repository
