You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by da...@apache.org on 2020/11/23 13:35:46 UTC

[sling-feature-converter-maven-plugin] 36/37: Use project.remoteProjectRepositories instead of project.remotePluginRepositories

This is an automated email from the ASF dual-hosted git repository.

davidb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-feature-converter-maven-plugin.git

commit eeb54fce9e36427033100673d6b6535ff201ebba
Author: David Bosschaert <bo...@adobe.com>
AuthorDate: Mon Nov 23 13:19:03 2020 +0000

    Use project.remoteProjectRepositories instead of project.remotePluginRepositories
---
 .../java/org/apache/sling/cpconverter/maven/mojos/ConvertCPMojo.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/cpconverter/maven/mojos/ConvertCPMojo.java b/src/main/java/org/apache/sling/cpconverter/maven/mojos/ConvertCPMojo.java
index 2a3d29d..6498b95 100644
--- a/src/main/java/org/apache/sling/cpconverter/maven/mojos/ConvertCPMojo.java
+++ b/src/main/java/org/apache/sling/cpconverter/maven/mojos/ConvertCPMojo.java
@@ -189,7 +189,7 @@ public class ConvertCPMojo
     @Component
     private RepositorySystem repoSystem;
 
-    @Parameter(defaultValue = "${project.remotePluginRepositories}", readonly = true)
+    @Parameter(defaultValue = "${project.remoteProjectRepositories}", readonly = true)
     private List<RemoteRepository> remoteRepos;
 
     @Override