This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch reproducible in repository https://gitbox.apache.org/repos/asf/maven.git
commit 9cbe4bda6be82b2faa41373e27ed9860a23e6bd7 Author: Hervé Boutemy <[email protected]> AuthorDate: Sun Sep 22 09:16:33 2019 +0200 add repo to resolve SNAPSHOT parent POM and plugins --- pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pom.xml b/pom.xml index c7ac485..d3565b4 100644 --- a/pom.xml +++ b/pom.xml @@ -713,4 +713,25 @@ under the License. </build> </profile> </profiles> + + <repositories> + <repository><!-- useful to resolve parent pom when it is a SNAPSHOT --> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>https://repository.apache.org/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>https://repository.apache.org/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> + </pluginRepository> + </pluginRepositories> </project>
