This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch staging-parent in repository https://gitbox.apache.org/repos/asf/maven-parent.git
commit a9047bf3e5f085808bc28ed9a49e333f4ca83cae Author: Hervé Boutemy <[email protected]> AuthorDate: Sat Jun 27 07:02:37 2026 +0200 resolve parent POM from r.a.o --- .github/settings.xml | 35 +++++++++++++++++++++++++++++++++++ .github/workflows/maven-verify.yml | 2 ++ 2 files changed, 37 insertions(+) diff --git a/.github/settings.xml b/.github/settings.xml new file mode 100644 index 0000000..31d6782 --- /dev/null +++ b/.github/settings.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<settings> + <repositories> + <repository><!-- useful for releasing while voting on Apache parent POM --> + <id>repository.apache.org</id> + <url>https://repository.apache.org/content/repositories/staging/</url> + <layout>default</layout> + <releases> + <enabled>true</enabled> + <updatePolicy>never</updatePolicy> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> +</settings> diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 6ef443c..6ebcb8a 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -28,3 +28,5 @@ jobs: with: ff-site-goal: 'site' matrix-enabled: false + # to be able to use staging Apache parent POM + maven-args: -s .github/settingx.xml
