This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-trino.git
The following commit(s) were added to refs/heads/main by this push:
new 65c1dfb prefer central repo for releases; limit apache-snapshots to
snapshots (#94)
65c1dfb is described below
commit 65c1dfbeaad91f93766fe6f170e1e8b92bd552fb
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Tue Dec 17 04:35:26 2024 +0100
prefer central repo for releases; limit apache-snapshots to snapshots (#94)
---
pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/pom.xml b/pom.xml
index 20693a3..b591ca4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -321,15 +321,28 @@ under the License.
<profile>
<id>apache-build</id>
<repositories>
+ <repository>
+ <id>central</id>
+ <url>https://repo.maven.apache.org/maven2</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
<repository>
<id>apache-releases</id>
<name>apache releases</name>
<url>https://repository.apache.org/content/repositories/releases/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
</repository>
<repository>
<id>apache-snapshots</id>
<name>apache snapshots</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
</repository>
</repositories>
</profile>